diff options
author | pommicket <pommicket@gmail.com> | 2025-09-15 21:31:02 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-15 21:31:02 -0400 |
commit | b93385c0fded8d6c232267a8bd9293153baea777 (patch) | |
tree | e13f68e0802310be4ee5f68217da700e51d8ff86 /CMakeLists.txt | |
parent | 09821002b314b7c8517f16d351b1c6b1088a47dc (diff) |
all_functions example
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0c81004..bc4eb26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,6 +20,9 @@ target_link_libraries(example_read_conf pom) add_executable(example_custom_alloc examples/custom_alloc.c) target_include_directories(example_custom_alloc PRIVATE .) target_link_libraries(example_custom_alloc pom) +add_executable(example_all_functions examples/all_functions.c) +target_include_directories(example_all_functions PRIVATE .) +target_link_libraries(example_all_functions pom) install(TARGETS pom pom-shared DESTINATION lib) install(FILES pom.pc DESTINATION lib) |