From fa7fc343a0e444da72938fad58d219cf52228976 Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Thu, 21 Dec 2023 17:44:03 -0500 Subject: plugin checkpoint - multiple plugins and collision callbacks --- example/CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 example/CMakeLists.txt (limited to 'example/CMakeLists.txt') 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) -- cgit v1.2.3