Port web_service from Citra
This commit is contained in:
parent
5f30f95e94
commit
4d139943f2
45 changed files with 1577 additions and 39 deletions
16
src/web_service/CMakeLists.txt
Normal file
16
src/web_service/CMakeLists.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
add_library(web_service STATIC
|
||||
telemetry_json.cpp
|
||||
telemetry_json.h
|
||||
verify_login.cpp
|
||||
verify_login.h
|
||||
web_backend.cpp
|
||||
web_backend.h
|
||||
)
|
||||
|
||||
create_target_directory_groups(web_service)
|
||||
|
||||
get_directory_property(OPENSSL_LIBS
|
||||
DIRECTORY ${CMAKE_SOURCE_DIR}/externals/libressl
|
||||
DEFINITION OPENSSL_LIBS)
|
||||
add_definitions(-DCPPHTTPLIB_OPENSSL_SUPPORT)
|
||||
target_link_libraries(web_service PUBLIC common json-headers ${OPENSSL_LIBS} httplib lurlparser)
|
Loading…
Add table
Add a link
Reference in a new issue