2017-12-11 00:55:03 +01: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 20:58:08 +01:00
|
|
|
nus_download.cpp
|
|
|
|
nus_download.h
|
2022-12-17 16:06:38 +01:00
|
|
|
precompiled_headers.h
|
2017-12-11 00:55:03 +01:00
|
|
|
telemetry_json.cpp
|
|
|
|
telemetry_json.h
|
|
|
|
verify_login.cpp
|
|
|
|
verify_login.h
|
2018-10-27 09:35:01 +02:00
|
|
|
verify_user_jwt.cpp
|
|
|
|
verify_user_jwt.h
|
2017-12-11 00:55:03 +01:00
|
|
|
web_backend.cpp
|
|
|
|
web_backend.h
|
|
|
|
)
|
2017-06-28 05:01:49 +02:00
|
|
|
|
2017-12-11 00:55:03 +01:00
|
|
|
create_target_directory_groups(web_service)
|
2017-06-28 05:01:49 +02:00
|
|
|
|
2018-10-20 16:47:17 +02:00
|
|
|
target_compile_definitions(web_service PRIVATE -DCPPHTTPLIB_OPENSSL_SUPPORT)
|
2021-08-20 13:46:35 +02: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 18:36:12 +02: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-11 06:18:25 +01: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()
|