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

12 lines
308 B
CMake
Executable file

set(INCLUDE_FILES
include/mainwindow.h)
qt5_wrap_cpp(EDITOR_SRC ${INCLUDE_FILES})
add_executable(MaterialEditor
src/main.cpp
src/mainwindow.cpp
${EDITOR_SRC})
target_include_directories(MaterialEditor PRIVATE include)
target_link_libraries(MaterialEditor Qt5::Widgets Engine EditorCommon)