mirror of
https://github.com/PabloMK7/citra.git
synced 2024-12-12 09:09:49 +00:00
1a8841f96e
Added verify_backend to load user_data for members. and removed method to generate UID as this is now done server-side. Added GetUsername function and a "token" param to room_member. Also added a username to ChatEntry, so that the username can be shown (along with nicknames) in the chat dialog.
20 lines
618 B
CMake
20 lines
618 B
CMake
add_library(web_service STATIC
|
|
announce_room_json.cpp
|
|
announce_room_json.h
|
|
telemetry_json.cpp
|
|
telemetry_json.h
|
|
verify_login.cpp
|
|
verify_login.h
|
|
verify_user_jwt.cpp
|
|
verify_user_jwt.h
|
|
web_backend.cpp
|
|
web_backend.h
|
|
)
|
|
|
|
create_target_directory_groups(web_service)
|
|
|
|
get_directory_property(OPENSSL_LIBS
|
|
DIRECTORY ${PROJECT_SOURCE_DIR}/externals/libressl
|
|
DEFINITION OPENSSL_LIBS)
|
|
target_compile_definitions(web_service PRIVATE -DCPPHTTPLIB_OPENSSL_SUPPORT)
|
|
target_link_libraries(web_service PRIVATE common network json-headers ${OPENSSL_LIBS} httplib lurlparser cpp-jwt)
|