diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-28 14:45:53 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-28 14:45:53 +0200 |
commit | 506090032a07f2f3a74a44d8c8774cbdd252c947 (patch) | |
tree | eb9cb129e39ba43a9460fc203538dfa84d138773 /mwe/dynlink/lib/CMakeLists.txt | |
parent | f3eeedc91a04ca0651e0fe78a2119e7e3e38e391 (diff) |
WIP ExternalProject test
Diffstat (limited to 'mwe/dynlink/lib/CMakeLists.txt')
-rw-r--r-- | mwe/dynlink/lib/CMakeLists.txt | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/mwe/dynlink/lib/CMakeLists.txt b/mwe/dynlink/lib/CMakeLists.txt index 2d15353..7efc91a 100644 --- a/mwe/dynlink/lib/CMakeLists.txt +++ b/mwe/dynlink/lib/CMakeLists.txt @@ -5,6 +5,20 @@ set(CMAKE_CXX_STANDARD 20) project(lib C CXX) -add_library(test SHARED lib.c) +add_library(test SHARED) + target_include_directories(test SYSTEM INTERFACE .) +target_sources(test PUBLIC + test.c +) + +target_sources(test PUBLIC FILE_SET HEADERS FILES + test.h +) + +install( + TARGETS test + FILE_SET HEADERS DESTINATION include +) + |