mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-11 14:10:25 -06:00
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) |