diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2020-05-24 13:25:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-24 13:25:01 -0400 |
commit | c205840e737b23614a686a9675b896106cee5c64 (patch) | |
tree | f2eb9d93edb1540221daea3682bf13254d28128c /src | |
parent | 03e39ae5dcd4002ac9657a550c48b8e9f85c449c (diff) | |
parent | a38fbb5766b48a9695ea139f79634fc746642bdd (diff) | |
download | spmc-c205840e737b23614a686a9675b896106cee5c64.tar.gz |
Merge pull request #37 from jhunkeler/version-fixups
Version fixups
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6d27935..623ea68 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -12,6 +12,14 @@ add_executable(spm target_link_directories(spm PUBLIC ${OpenSSL_LIBRARY_DIRS} ${CURL_LIBRARY_DIRS}) target_link_libraries(spm libspm ${OpenSSL_LIBRARIES} ${CURL_LIBRARIES}) +## Uncomment to build a scratch executable (i.e. for quick library development / verification) +#add_executable(spm_scratch +# scratch.c +#) +# +#target_link_directories(spm_scratch PUBLIC ${OpenSSL_LIBRARY_DIRS} ${CURL_LIBRARY_DIRS}) +#target_link_libraries(spm_scratch libspm ${OpenSSL_LIBRARIES} ${CURL_LIBRARIES}) + if (LINUX) target_link_libraries(spm libspm rt) endif() |