blob: b1f3d64ce869f8e038585ad23a62a9ba30ca6afd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
project(pke_editor VERSION 0.0)
set(PKE_EDITOR_SOURCE_FILES
main.cpp
editor.hpp
editor.cpp
)
add_executable(pke_editor
${PKE_EDITOR_SOURCE_FILES}
)
target_link_libraries(pke_editor PRIVATE pke)
target_include_directories(pke_editor PRIVATE pke)
install(
TARGETS pke_editor
RUNTIME DESTINATION bin
)
|