diff options
author | kumquat-ir <66188216+kumquat-ir@users.noreply.github.com> | 2021-04-17 09:46:11 -0700 |
---|---|---|
committer | kumquat-ir <66188216+kumquat-ir@users.noreply.github.com> | 2021-04-17 09:46:11 -0700 |
commit | e668aa0f95f4f56a1ac4320f014662d279c22708 (patch) | |
tree | 7462597a5b709081b15c224d928b36018c74248f /libraries/tomlc99/CMakeLists.txt | |
parent | 13afad80fb9b17503621dc63509113203af8887c (diff) | |
download | PrismLauncher-e668aa0f95f4f56a1ac4320f014662d279c22708.tar.gz PrismLauncher-e668aa0f95f4f56a1ac4320f014662d279c22708.tar.bz2 PrismLauncher-e668aa0f95f4f56a1ac4320f014662d279c22708.zip |
switch to new toml library
Diffstat (limited to 'libraries/tomlc99/CMakeLists.txt')
-rw-r--r-- | libraries/tomlc99/CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libraries/tomlc99/CMakeLists.txt b/libraries/tomlc99/CMakeLists.txt new file mode 100644 index 00000000..60786923 --- /dev/null +++ b/libraries/tomlc99/CMakeLists.txt @@ -0,0 +1,10 @@ +project(tomlc99) + +set(tomlc99_SOURCES +include/toml.h +src/toml.c +) + +add_library(tomlc99 STATIC ${tomlc99_SOURCES}) + +target_include_directories(tomlc99 PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include) |