diff options
author | pommicket <pommicket@gmail.com> | 2025-09-15 18:54:37 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-15 18:54:37 -0400 |
commit | d5cf3acb7a45b7e46bf51dc6a66030d7bc986597 (patch) | |
tree | 357dc594623a3abc2a04d2d516df3bed9406a933 /CMakeLists.txt | |
parent | 2b519f42fec913763abd0d967301916e763e770a (diff) |
Interpretation tests, various bugfixes
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f14c696..0972a9b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,10 @@ endif() add_library(pom-static STATIC pom.c) add_library(pom SHARED pom.c) -add_executable(tests tests/errors.c tests/location.c tests/parsing.c tests/main.c) +add_executable(tests tests/errors.c tests/location.c tests/parsing.c tests/interpretation.c tests/main.c) target_include_directories(tests PRIVATE .) target_link_libraries(tests pom-static) +add_executable(read_conf examples/read_conf.c) +target_include_directories(read_conf PRIVATE .) +target_link_libraries(read_conf pom-static) |