mirror of
https://github.com/SimoneN64/Kaizen.git
synced 2025-04-02 10:41:53 -04:00
50 lines
1.1 KiB
CMake
50 lines
1.1 KiB
CMake
cmake_minimum_required (VERSION 3.2.0)
|
|
project (DiscordRPC)
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
option(BUILD_EXAMPLES "Build example apps" ON)
|
|
|
|
# format
|
|
file(GLOB_RECURSE ALL_SOURCE_FILES
|
|
examples/*.cpp examples/*.h examples/*.c
|
|
include/*.h
|
|
src/*.cpp src/*.h src/*.c
|
|
)
|
|
|
|
# Set CLANG_FORMAT_SUFFIX if you are using custom clang-format, e.g. clang-format-5.0
|
|
find_program(CLANG_FORMAT_CMD clang-format${CLANG_FORMAT_SUFFIX})
|
|
|
|
if (CLANG_FORMAT_CMD)
|
|
add_custom_target(
|
|
clangformat
|
|
COMMAND ${CLANG_FORMAT_CMD}
|
|
-i -style=file -fallback-style=none
|
|
${ALL_SOURCE_FILES}
|
|
DEPENDS
|
|
${ALL_SOURCE_FILES}
|
|
)
|
|
endif(CLANG_FORMAT_CMD)
|
|
|
|
# thirdparty stuff
|
|
execute_process(
|
|
COMMAND mkdir ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty
|
|
ERROR_QUIET
|
|
)
|
|
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
rapidjson
|
|
GIT_REPOSITORY https://github.com/Tencent/rapidjson
|
|
GIT_TAG 24b5e7a8b27f42fa16b96fc70aade9106cf7102f
|
|
)
|
|
|
|
FetchContent_MakeAvailable(rapidjson)
|
|
|
|
# add subdirs
|
|
|
|
add_subdirectory(src)
|
|
if (BUILD_EXAMPLES)
|
|
add_subdirectory(examples/send-presence)
|
|
endif(BUILD_EXAMPLES)
|