2017-06-29 16:17:10 +00:00
|
|
|
cmake_minimum_required (VERSION 3.7.0)
|
|
|
|
project (DiscordRPCExample)
|
|
|
|
|
2017-07-11 22:59:14 +00:00
|
|
|
execute_process(
|
|
|
|
COMMAND mkdir ${CMAKE_SOURCE_DIR}/thirdparty
|
|
|
|
ERROR_QUIET
|
|
|
|
)
|
|
|
|
|
|
|
|
find_file(RAPIDJSON NAMES rapidjson rapidjson-1.1.0 PATHS ${CMAKE_SOURCE_DIR}/thirdparty)
|
|
|
|
|
|
|
|
if (NOT RAPIDJSON)
|
|
|
|
message("no rapidjson, download")
|
|
|
|
set(RJ_TAR_FILE ${CMAKE_SOURCE_DIR}/thirdparty/v1.1.0.tar.gz)
|
|
|
|
file(DOWNLOAD https://github.com/miloyip/rapidjson/archive/v1.1.0.tar.gz ${RJ_TAR_FILE})
|
|
|
|
execute_process(
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E tar xzf ${RJ_TAR_FILE}
|
|
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/thirdparty
|
|
|
|
)
|
|
|
|
file(REMOVE ${RJ_TAR_FILE})
|
|
|
|
endif(NOT RAPIDJSON)
|
|
|
|
|
2017-06-29 16:17:10 +00:00
|
|
|
add_subdirectory(src)
|
2017-07-06 18:46:13 +00:00
|
|
|
add_subdirectory(examples/simple)
|
2017-07-11 22:59:14 +00:00
|
|
|
add_subdirectory(examples/simpleSync)
|
2017-06-30 19:00:45 +00:00
|
|
|
add_subdirectory(examples/simplest)
|
2017-07-11 22:59:14 +00:00
|
|
|
|