diff options
author | sanine <sanine.not@pm.me> | 2022-11-26 23:33:32 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-11-26 23:33:32 -0600 |
commit | 29f9921b919497be4d652ce963c8afbb2c1cd1e7 (patch) | |
tree | aae2f98de4e64829a12b577d13aa48a84d9b23d6 /src/CMakeLists.txt | |
parent | d087821a142558865675653a016f654eb66db730 (diff) |
implement basic matrix parsing
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..a9067ca --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,17 @@ +project(kalmia) + +target_sources(kalmia PUBLIC transform.c) +target_include_directories(kalmia PUBLIC ezxml) +target_link_libraries(kalmia ezxml) + +add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/ezxml) + +if (KALMIA_BUILD_TESTS) + target_sources( + kalmia-tests PUBLIC + test/lily-test.c + test/test.c + + transform.test.c + ) +endif() |