initial commit - linking static lib to executable

This commit is contained in:
dl92
2026-01-11 23:53:13 +00:00
parent a9d1275ad2
commit f8d7fdda5d
10 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
add_subdirectory(TestA)
add_subdirectory(LibA)
target_link_libraries(TestA
PRIVATE
LibA
)