summaryrefslogtreecommitdiff
path: root/editor/CMakeLists.txt
blob: eaa72f821380d5aadeac8ee6255473e98dd97b88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)