diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2020-05-21 19:10:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-21 19:10:14 -0400 |
commit | 03e39ae5dcd4002ac9657a550c48b8e9f85c449c (patch) | |
tree | 7c266ca17a16d4c9ca297fa402a0a9d2ee6f871f /src | |
parent | 3b323fcc82d3d06d671c55c2b77f74558706420e (diff) | |
parent | 86b2a55574f53c6e175de8cf745d2e67308b612e (diff) | |
download | spmc-03e39ae5dcd4002ac9657a550c48b8e9f85c449c.tar.gz |
Merge pull request #36 from jhunkeler/messing-around
Version parsing and Darwin bugfix
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b8c042f..6d27935 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -11,6 +11,7 @@ add_executable(spm target_link_directories(spm PUBLIC ${OpenSSL_LIBRARY_DIRS} ${CURL_LIBRARY_DIRS}) target_link_libraries(spm libspm ${OpenSSL_LIBRARIES} ${CURL_LIBRARIES}) + if (LINUX) target_link_libraries(spm libspm rt) endif() |