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

17 lines
447 B
CMake

find_package(Qt5Widgets CONFIG REQUIRED)
set(INCLUDE_FILES
include/mainwindow.h
include/renderwindow.h
include/editorstyle.h)
qt5_wrap_cpp(EDITOR_SRC ${INCLUDE_FILES})
add_executable(LevelEditor
src/main.cpp
src/mainwindow.cpp
src/renderwindow.cpp
src/editorstyle.cpp
${EDITOR_SRC})
target_include_directories(LevelEditor PRIVATE include)
target_link_libraries(LevelEditor Qt5::Widgets Engine ToolWindowManager)