aboutsummaryrefslogtreecommitdiff
path: root/Plugin.cmake
diff options
context:
space:
mode:
authorRichard <q@1bpm.net>2022-09-04 00:32:56 +0100
committerRichard <q@1bpm.net>2022-09-04 00:32:56 +0100
commit1d055261b4144dbf86b2658437015b15d4dd9bff (patch)
tree6049b19d1bf953a650383de1a5e438b8b82679f6 /Plugin.cmake
downloadcsound-json-1d055261b4144dbf86b2658437015b15d4dd9bff.tar.gz
csound-json-1d055261b4144dbf86b2658437015b15d4dd9bff.tar.bz2
csound-json-1d055261b4144dbf86b2658437015b15d4dd9bff.zip
initial
Diffstat (limited to 'Plugin.cmake')
-rw-r--r--Plugin.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/Plugin.cmake b/Plugin.cmake
new file mode 100644
index 0000000..8dc15e2
--- /dev/null
+++ b/Plugin.cmake
@@ -0,0 +1,10 @@
+set(PLUGIN_NAME csjson)
+
+# Dependencies
+ # None
+
+# Source files
+set(CPPFILES src/opcodes.cpp)
+set(INCLUDES ${CSOUND_INCLUDE_DIRS} "include")
+make_plugin(${PLUGIN_NAME} "${CPPFILES}")
+target_include_directories(${PLUGIN_NAME} PRIVATE ${INCLUDES})