diff options
author | tastytea | 2020-01-03 16:20:27 +0100 |
---|---|---|
committer | tastytea | 2020-01-03 16:20:27 +0100 |
commit | e88238a37c48328bce214972f87cd8fa4c7fa3f6 (patch) | |
tree | e0a3a7ca6cb08d19ad2905b31dcf823a40a31739 | |
parent | 94dd5f605d63d99dfb7c81b2e77b16a645fe8696 (diff) | |
download | mastodonpp-e88238a37c48328bce214972f87cd8fa4c7fa3f6.tar mastodonpp-e88238a37c48328bce214972f87cd8fa4c7fa3f6.tar.gz mastodonpp-e88238a37c48328bce214972f87cd8fa4c7fa3f6.zip |
Fix target_sources.
-rw-r--r-- | src/CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6968cfb..17b45dd 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -9,8 +9,7 @@ add_library(${PROJECT_NAME}) file(GLOB_RECURSE sources_lib *.cpp) file(GLOB_RECURSE headers_lib ../include/*.hpp) target_sources(${PROJECT_NAME} - PRIVATE "${sources_lib}" - PUBLIC "${headers_lib}") + PRIVATE "${sources_lib}" "${headers_lib}") set_target_properties(${PROJECT_NAME} PROPERTIES VERSION ${PROJECT_VERSION} |