2017-12-10 18:55:03 -05:00
|
|
|
add_library(web_service STATIC
|
2017-10-31 10:02:42 +01:00
|
|
|
announce_room_json.cpp
|
|
|
|
announce_room_json.h
|
2023-02-09 11:58:08 -08:00
|
|
|
nus_download.cpp
|
|
|
|
nus_download.h
|
2022-12-17 16:06:38 +01:00
|
|
|
precompiled_headers.h
|
2017-12-10 18:55:03 -05:00
|
|
|
telemetry_json.cpp
|
|
|
|
telemetry_json.h
|
|
|
|
verify_login.cpp
|
|
|
|
verify_login.h
|
2018-10-27 15:35:01 +08:00
|
|
|
verify_user_jwt.cpp
|
|
|
|
verify_user_jwt.h
|
2017-12-10 18:55:03 -05:00
|
|
|
web_backend.cpp
|
|
|
|
web_backend.h
|
|
|
|
)
|
2017-06-27 23:01:49 -04:00
|
|
|
|
2017-12-10 18:55:03 -05:00
|
|
|
create_target_directory_groups(web_service)
|
2017-06-27 23:01:49 -04:00
|
|
|
|
2018-10-20 10:47:17 -04:00
|
|
|
target_compile_definitions(web_service PRIVATE -DCPPHTTPLIB_OPENSSL_SUPPORT)
|
2021-08-20 05:46:35 -06:00
|
|
|
target_link_libraries(web_service PRIVATE common network json-headers httplib cpp-jwt)
|
|
|
|
target_link_libraries(web_service PUBLIC ${OPENSSL_LIBS})
|
2022-09-21 19:36:12 +03:00
|
|
|
set_target_properties(web_service PROPERTIES INTERPROCEDURAL_OPTIMIZATION ${ENABLE_LTO})
|
2020-02-21 19:04:04 +01:00
|
|
|
if (ANDROID)
|
|
|
|
target_link_libraries(web_service PRIVATE ifaddrs)
|
2021-02-10 22:18:25 -07:00
|
|
|
elseif(WIN32)
|
|
|
|
target_link_libraries(web_service PRIVATE crypt32)
|
2020-02-21 19:04:04 +01:00
|
|
|
endif()
|
2022-12-17 16:06:38 +01:00
|
|
|
|
|
|
|
if (CITRA_USE_PRECOMPILED_HEADERS)
|
|
|
|
target_precompile_headers(web_service PRIVATE precompiled_headers.h)
|
|
|
|
endif()
|