diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-10-14 13:10:37 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-10-14 13:10:37 +0200 |
| commit | 1da12097cbf13eb85adb3d28533a4e1f62e2c882 (patch) | |
| tree | ddf090752ae4107c713ea0b23c892a71bb0dc08d | |
| parent | d96e5685ee072d5fd80c562089c1080a53673187 (diff) | |
| download | slcl-1da12097cbf13eb85adb3d28533a4e1f62e2c882.tar.gz | |
CMakeLists.txt: Fix wrong library name
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 91d4673..391b093 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ target_compile_definitions(${PROJECT_NAME} PRIVATE _FILE_OFFSET_BITS=64) add_subdirectory(libweb) find_package(cJSON 1.0 REQUIRED) find_package(OpenSSL 2.0 REQUIRED) -target_link_libraries(${PROJECT_NAME} PRIVATE libweb dynstr cjson OpenSSL::SSL) +target_link_libraries(${PROJECT_NAME} PRIVATE web dynstr cjson OpenSSL::SSL) install(TARGETS ${PROJECT_NAME}) install(FILES usergen TYPE BIN |
