mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-22 20:17:46 +00:00
11 lines
290 B
Text
11 lines
290 B
Text
|
set(CMAKE_AUTOMOC ON)
|
||
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||
|
|
||
|
find_package(Qt5 COMPONENTS Widgets REQUIRED)
|
||
|
|
||
|
add_executable(sdklauncher
|
||
|
src/main.cpp
|
||
|
src/mainwindow.cpp)
|
||
|
target_link_libraries(sdklauncher PUBLIC Qt5::Widgets)
|
||
|
target_include_directories(sdklauncher PUBLIC include)
|