From 6adfb65f6646537abb0ad717614eec26ff14761c Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 8 Jul 2024 09:45:14 -0400 Subject: Initial commit --- CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..54a43f5 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 3.28) +project(asdfapi C) + +set(CMAKE_C_STANDARD 99) + +link_libraries(dl) +add_subdirectory(extensions) +add_executable(asdfapi main.c + ext_internal.c + ext_internal.h +) -- cgit