Skip to content
Snippets Groups Projects
Commit 52fbe1e1 authored by bunnei's avatar bunnei
Browse files

web_service: Add skeleton project.

parent 8abf8088
No related branches found
No related tags found
No related merge requests found
...@@ -14,3 +14,4 @@ endif() ...@@ -14,3 +14,4 @@ endif()
if (ENABLE_QT) if (ENABLE_QT)
add_subdirectory(citra_qt) add_subdirectory(citra_qt)
endif() endif()
add_subdirectory(web_service)
...@@ -386,5 +386,5 @@ set(HEADERS ...@@ -386,5 +386,5 @@ set(HEADERS
create_directory_groups(${SRCS} ${HEADERS}) create_directory_groups(${SRCS} ${HEADERS})
add_library(core STATIC ${SRCS} ${HEADERS}) add_library(core STATIC ${SRCS} ${HEADERS})
target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) target_link_libraries(core PUBLIC common PRIVATE audio_core video_core web_service)
target_link_libraries(core PUBLIC Boost::boost PRIVATE cryptopp dynarmic fmt) target_link_libraries(core PUBLIC Boost::boost PRIVATE cryptopp dynarmic fmt)
set(SRCS
telemetry_json.cpp
web_backend.cpp
)
set(HEADERS
telemetry_json.h
web_backend.h
)
create_directory_groups(${SRCS} ${HEADERS})
add_library(web_service STATIC ${SRCS} ${HEADERS})
target_link_libraries(web_service PUBLIC common cpr json-headers)
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "web_service/telemetry_json.h"
namespace WebService {
} // namespace WebService
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
namespace WebService {
} // namespace WebService
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "web_service/web_backend.h"
namespace WebService {
} // namespace WebService
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
namespace WebService {
} // namespace WebService
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment