summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2024-01-08 15:15:42 -0500
committerJonathan Bradley <jcb@pikum.xyz>2024-01-08 15:15:42 -0500
commit8e70544b340c8987daca3eb9053f026d4d96c616 (patch)
tree6dd223a6237f31d8b0e76e6ef46964826db6b459 /editor
parent3aa95ba29a779d695c2a16905c651be768231212 (diff)
cmake install commands for pke - first pass
Diffstat (limited to 'editor')
-rw-r--r--editor/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/editor/CMakeLists.txt b/editor/CMakeLists.txt
index eaa72f8..b1f3d64 100644
--- a/editor/CMakeLists.txt
+++ b/editor/CMakeLists.txt
@@ -10,3 +10,8 @@ add_executable(pke_editor
)
target_link_libraries(pke_editor PRIVATE pke)
target_include_directories(pke_editor PRIVATE pke)
+
+install(
+ TARGETS pke_editor
+ RUNTIME DESTINATION bin
+)