diff options
author | sanine <sanine.not@pm.me> | 2022-11-27 20:03:27 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-11-27 20:03:27 -0600 |
commit | 6ca18697f9eb332c38f0b46b823089ce80347580 (patch) | |
tree | 267d074f74ebfa54f1c90fd3361e6b2dbf793613 /src/CMakeLists.txt | |
parent | 21e8b8ad389dda55d92af4af1fd22aac657074b4 (diff) |
add dynamic array functions
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a9067ca..a82103b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,6 +1,11 @@ project(kalmia) -target_sources(kalmia PUBLIC transform.c) +target_sources( + kalmia PUBLIC + transform.c + node.c + util.c +) target_include_directories(kalmia PUBLIC ezxml) target_link_libraries(kalmia ezxml) @@ -13,5 +18,7 @@ if (KALMIA_BUILD_TESTS) test/test.c transform.test.c + node.test.c + util.test.c ) endif() |