Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
graph/tools/sdklauncher/CMakeLists.txt

14 lines
300 B
Text
Raw Normal View History

2018-12-26 07:36:34 -05:00
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)