diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-12-23 14:27:04 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-12-23 14:27:04 -0500 |
commit | 860d05aa8d580bbf3853db13bc25e9dfcb16f514 (patch) | |
tree | 7248dcb85e2157ec1aa7347509b4d9e9ff94b683 /src/CMakeLists.txt | |
parent | 041e1c818600fe6930b3cb2a33e125e3c28fa929 (diff) | |
download | spmc-860d05aa8d580bbf3853db13bc25e9dfcb16f514.tar.gz |
Add fopen/close/rewind for urls
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 2cec940..c8377ff 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -3,8 +3,8 @@ include_directories( ${CMAKE_BINARY_DIR}/include ) -add_executable(spm spm.c config.c compat.c deps.c fs.c rpath.c find.c shell.c archive.c strings.c relocation.c install.c config_global.c manifest.c checksum.c) -target_link_libraries(spm rt crypto ssl) +add_executable(spm spm.c config.c compat.c deps.c fs.c rpath.c find.c shell.c archive.c strings.c relocation.c install.c config_global.c manifest.c checksum.c extern/url.c) +target_link_libraries(spm rt crypto ssl curl) install( TARGETS spm DESTINATION ${CMAKE_INSTALL_PREFIX}/bin |