mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-23 04:30:09 -05:00
0fbdbb8dab
Add "isEnabled" flag BoolProperty to all renderables
10 lines
325 B
CMake
10 lines
325 B
CMake
cmake_minimum_required(VERSION 2.8.11)
|
|
|
|
project(LuascriptExternalControl)
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
find_package(Qt5Widgets)
|
|
find_package(Qt5Network)
|
|
add_executable(LuascriptExternalControl WIN32 main.cpp mainwindow.cpp)
|
|
target_link_libraries(LuascriptExternalControl Qt5::Widgets Qt5::Network) |