From 6adfb65f6646537abb0ad717614eec26ff14761c Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 8 Jul 2024 09:45:14 -0400 Subject: Initial commit --- extensions/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 extensions/CMakeLists.txt (limited to 'extensions/CMakeLists.txt') diff --git a/extensions/CMakeLists.txt b/extensions/CMakeLists.txt new file mode 100644 index 0000000..ed1a5e6 --- /dev/null +++ b/extensions/CMakeLists.txt @@ -0,0 +1,4 @@ +project(asdfapi_ext) +add_library(asdfapi_ext SHARED ext.c ext.h) +add_library(asdfapi_ext_hello SHARED ext_hello.c) +target_link_libraries(asdfapi_ext_hello asdfapi_ext) \ No newline at end of file -- cgit