Add submodules
This commit is contained in:
parent
bd14f397ce
commit
5f30f95e94
11 changed files with 20069 additions and 0 deletions
25
externals/CMakeLists.txt
vendored
25
externals/CMakeLists.txt
vendored
|
@ -70,3 +70,28 @@ if(ENABLE_CUBEB)
|
|||
set(BUILD_TESTS OFF CACHE BOOL "")
|
||||
add_subdirectory(cubeb EXCLUDE_FROM_ALL)
|
||||
endif()
|
||||
|
||||
# DiscordRPC
|
||||
if (USE_DISCORD_PRESENCE)
|
||||
add_subdirectory(discord-rpc)
|
||||
target_include_directories(discord-rpc INTERFACE ./discord-rpc/include)
|
||||
endif()
|
||||
|
||||
if (ENABLE_WEB_SERVICE)
|
||||
# LibreSSL
|
||||
set(LIBRESSL_SKIP_INSTALL ON CACHE BOOL "")
|
||||
add_definitions(-DHAVE_INET_NTOP)
|
||||
add_subdirectory(libressl)
|
||||
target_include_directories(ssl INTERFACE ./libressl/include)
|
||||
|
||||
# lurlparser
|
||||
add_subdirectory(lurlparser)
|
||||
|
||||
# httplib
|
||||
add_library(httplib INTERFACE)
|
||||
target_include_directories(httplib INTERFACE ./httplib)
|
||||
|
||||
# JSON
|
||||
add_library(json-headers INTERFACE)
|
||||
target_include_directories(json-headers INTERFACE ./json)
|
||||
endif()
|
Loading…
Add table
Add a link
Reference in a new issue