blob: 0b1c22877837f2ee4ae17e1d5206da3d0fe9944f (
plain)
1
2
3
4
5
6
7
8
9
10
|
project(pke_editor VERSION 0.0)
set(PKE_EDITOR_SOURCE_FILES
main.cpp
)
add_executable(pke_editor
${PKE_EDITOR_SOURCE_FILES}
)
target_link_libraries(pke_editor PRIVATE pke imguidocked)
target_include_directories(pke_editor PRIVATE pke imguidocked)
|