13 lines
300 B
CMake
Executable file
13 lines
300 B
CMake
Executable file
set(INCLUDE_FILES
|
|
include/mainwindow.h)
|
|
|
|
qt5_wrap_cpp(EDITOR_SRC ${INCLUDE_FILES})
|
|
|
|
add_executable(SDKLauncher
|
|
src/main.cpp
|
|
src/mainwindow.cpp
|
|
${EDITOR_SRC})
|
|
target_include_directories(SDKLauncher PRIVATE include)
|
|
target_link_libraries(SDKLauncher Qt5::Widgets Engine EditorCommon)
|
|
|
|
|