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/leveleditor/CMakeLists.txt

18 lines
447 B
Text
Raw Normal View History

2018-12-21 06:32:37 -05:00
find_package(Qt5Widgets CONFIG REQUIRED)
set(INCLUDE_FILES
include/mainwindow.h
2018-12-24 09:32:05 -05:00
include/renderwindow.h
include/editorstyle.h)
2018-12-21 06:32:37 -05:00
qt5_wrap_cpp(EDITOR_SRC ${INCLUDE_FILES})
add_executable(LevelEditor
src/main.cpp
src/mainwindow.cpp
src/renderwindow.cpp
2018-12-24 09:32:05 -05:00
src/editorstyle.cpp
2018-12-21 06:32:37 -05:00
${EDITOR_SRC})
target_include_directories(LevelEditor PRIVATE include)
2018-12-24 10:04:00 -05:00
target_link_libraries(LevelEditor Qt5::Widgets Engine ToolWindowManager)