summaryrefslogtreecommitdiff
path: root/editor/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'editor/CMakeLists.txt')
-rw-r--r--editor/CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/editor/CMakeLists.txt b/editor/CMakeLists.txt
new file mode 100644
index 0000000..0b1c228
--- /dev/null
+++ b/editor/CMakeLists.txt
@@ -0,0 +1,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)