Browse Source
[cmake] explicitly public link ssl/jwt
Signed-off-by: crueter <crueter@eden-emu.dev>
pull/250/head
crueter
7 months ago
committed by
crueter
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
1 changed files with
1 additions and
1 deletions
-
src/web_service/CMakeLists.txt
|
|
@ -16,7 +16,7 @@ add_library(web_service STATIC |
|
|
|
|
|
|
|
|
create_target_directory_groups(web_service) |
|
|
create_target_directory_groups(web_service) |
|
|
target_include_directories(web_service PUBLIC ${cpp-jwt_SOURCE_DIR}/include) |
|
|
target_include_directories(web_service PUBLIC ${cpp-jwt_SOURCE_DIR}/include) |
|
|
target_link_libraries(web_service PRIVATE common network nlohmann_json::nlohmann_json httplib::httplib cpp-jwt::cpp-jwt OpenSSL::SSL) |
|
|
|
|
|
|
|
|
target_link_libraries(web_service PRIVATE common network nlohmann_json::nlohmann_json httplib::httplib PUBLIC cpp-jwt::cpp-jwt OpenSSL::SSL) |
|
|
|
|
|
|
|
|
if (YUZU_USE_PRECOMPILED_HEADERS) |
|
|
if (YUZU_USE_PRECOMPILED_HEADERS) |
|
|
target_precompile_headers(web_service PRIVATE precompiled_headers.h) |
|
|
target_precompile_headers(web_service PRIVATE precompiled_headers.h) |
|
|
|