summaryrefslogtreecommitdiffstats
path: root/src/web_service/CMakeLists.txt (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-04-16externals: Move LibreSSL linking to httplib.Markus Wick1-6/+1
Neither core nor web_services use OpenSSL nor LibreSSL. However they need to link them as it's a requirement of httplib. So let's declare this within httplib instead of core and web_services.
2018-10-20CMakeLists: Use PROJECT_SOURCE_DIR instead of CMAKE_SOURCE_DIRLioncash1-1/+1
This is more localized to what we want to enforce directory-wise with the project. CMAKE_SOURCE_DIR indicates the root of the source tree, but this would cause the wrong behavior if someone included yuzu as part of a larger buildsystem (for whatever reason). Instead, we want to use the directory where the "project(yuzu)" command was declared as the root path reference.
2018-10-20web_service/CMakeLists: Make the CPPHTTPLIB_OPENSSL_SUPPORT constrained to the web_service library onlyLioncash1-1/+1
Given we link in httplib privately, we can also make the definition enabling OpenSSL support private as well. Prevents leaking a definition into other libraries that link with this one, like the core library.
2018-10-02Review comments - part 5fearlessTobi1-2/+2
2018-10-02Port web_service from CitrafearlessTobi1-0/+16
2018-01-13Massive removal of unused modulesJames Rowe1-16/+0
2017-09-19WebService: Verify username and token (#2930)B3n301-0/+2
* WebService: Verify username and token; Log errors in PostJson * Fixup: added docstrings to the functions * Webservice: Added Icons to the verification, imrpved error detection in cpr, fixup nits * fixup: fmt warning
2017-07-10web_service: Add skeleton project.bunnei1-0/+14