Files
eden/src/web_service/CMakeLists.txt
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
692 B
CMake
Raw Normal View History

2022-05-15 02:06:02 +02:00
# SPDX-FileCopyrightText: 2018 yuzu Emulator Project
# SPDX-License-Identifier: GPL-2.0-or-later
2018-09-16 20:05:51 +02:00
add_library(web_service STATIC
2021-12-25 20:27:52 +01:00
announce_room_json.cpp
announce_room_json.h
2022-11-22 18:38:23 -05:00
precompiled_headers.h
2018-09-16 20:05:51 +02:00
verify_login.cpp
verify_login.h
2022-07-15 19:45:35 +02:00
verify_user_jwt.cpp
verify_user_jwt.h
2018-09-16 20:05:51 +02:00
web_backend.cpp
web_backend.h
web_result.h
2018-09-16 20:05:51 +02:00
)
create_target_directory_groups(web_service)
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)
2022-11-22 18:38:23 -05:00
if (YUZU_USE_PRECOMPILED_HEADERS)
target_precompile_headers(web_service PRIVATE precompiled_headers.h)
endif()