mirror of https://github.com/qt/qtdatavis3d.git
15 lines
390 B
CMake
15 lines
390 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
qt_add_executable(galaxy
|
|
cumulativedistributor.cpp cumulativedistributor.h
|
|
galaxydata.cpp galaxydata.h
|
|
main.cpp
|
|
star.cpp star.h
|
|
)
|
|
target_link_libraries(galaxy PUBLIC
|
|
Qt::Gui
|
|
Qt::Widgets
|
|
)
|