This commit is contained in:
Imbus 2026-01-17 06:13:49 +01:00
commit 2628afadcc
9 changed files with 112 additions and 0 deletions

11
app/CMakeLists.txt Normal file
View file

@ -0,0 +1,11 @@
add_executable(add_app
main.c
)
target_link_libraries(add_app
PRIVATE add::add
)
install(TARGETS add_app
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)