summaryrefslogtreecommitdiff
path: root/example/CMakeLists.txt
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2023-12-21 17:44:03 -0500
committerJonathan Bradley <jcb@pikum.xyz>2023-12-23 11:42:23 -0500
commitfa7fc343a0e444da72938fad58d219cf52228976 (patch)
tree24630be0c54f9768a13f32c5970558768e343543 /example/CMakeLists.txt
parent6fa3b137c74536d2bab77f3309ca5b4c60953fe0 (diff)
plugin checkpoint - multiple plugins and collision callbacks
Diffstat (limited to 'example/CMakeLists.txt')
-rw-r--r--example/CMakeLists.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt
new file mode 100644
index 0000000..a895b5d
--- /dev/null
+++ b/example/CMakeLists.txt
@@ -0,0 +1,14 @@
+project(pke_example VERSION 0.0)
+
+set(PKE_EDITOR_SOURCE_FILES
+ # example_export.h
+ example.hpp
+ example.cpp
+)
+
+add_library(pke_example
+ ${PKE_EDITOR_SOURCE_FILES}
+)
+
+target_link_libraries(pke_example PUBLIC pke)
+target_include_directories(pke_example PUBLIC pke)