mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-28 06:37:44 +00:00
10 lines
290 B
CMake
10 lines
290 B
CMake
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)
|