Automate running clang-format if it is available.
This commit is contained in:
parent
7a6172a300
commit
fbd8d6897d
3 changed files with 30 additions and 6 deletions
|
@ -1,13 +1,38 @@
|
||||||
cmake_minimum_required (VERSION 3.7.0)
|
cmake_minimum_required (VERSION 3.7.0)
|
||||||
project (DiscordRPCExample)
|
project (DiscordRPCExample)
|
||||||
|
|
||||||
|
# format
|
||||||
|
file(GLOB_RECURSE ALL_SOURCE_FILES
|
||||||
|
examples/*.cpp examples/*.h examples/*.c
|
||||||
|
include/*.h
|
||||||
|
src/*.cpp src/*.h src/*.c
|
||||||
|
)
|
||||||
|
|
||||||
|
find_program(CLANG_FORMAT_CMD clang-format)
|
||||||
|
|
||||||
|
if (CLANG_FORMAT_CMD)
|
||||||
|
add_custom_target(
|
||||||
|
clangformat
|
||||||
|
COMMAND clang-format
|
||||||
|
-i -style=file -fallback-style=none
|
||||||
|
${ALL_SOURCE_FILES}
|
||||||
|
DEPENDS
|
||||||
|
${ALL_SOURCE_FILES}
|
||||||
|
)
|
||||||
|
else(CLANG_FORMAT_CMD)
|
||||||
|
add_custom_target(
|
||||||
|
clangformat
|
||||||
|
COMMENT "no clang format"
|
||||||
|
)
|
||||||
|
endif(CLANG_FORMAT_CMD)
|
||||||
|
|
||||||
|
# thirdparty stuff
|
||||||
execute_process(
|
execute_process(
|
||||||
COMMAND mkdir ${CMAKE_SOURCE_DIR}/thirdparty
|
COMMAND mkdir ${CMAKE_SOURCE_DIR}/thirdparty
|
||||||
ERROR_QUIET
|
ERROR_QUIET
|
||||||
)
|
)
|
||||||
|
|
||||||
find_file(RAPIDJSON NAMES rapidjson rapidjson-1.1.0 PATHS ${CMAKE_SOURCE_DIR}/thirdparty)
|
find_file(RAPIDJSON NAMES rapidjson rapidjson-1.1.0 PATHS ${CMAKE_SOURCE_DIR}/thirdparty)
|
||||||
|
|
||||||
if (NOT RAPIDJSON)
|
if (NOT RAPIDJSON)
|
||||||
message("no rapidjson, download")
|
message("no rapidjson, download")
|
||||||
set(RJ_TAR_FILE ${CMAKE_SOURCE_DIR}/thirdparty/v1.1.0.tar.gz)
|
set(RJ_TAR_FILE ${CMAKE_SOURCE_DIR}/thirdparty/v1.1.0.tar.gz)
|
||||||
|
@ -18,8 +43,9 @@ if (NOT RAPIDJSON)
|
||||||
)
|
)
|
||||||
file(REMOVE ${RJ_TAR_FILE})
|
file(REMOVE ${RJ_TAR_FILE})
|
||||||
endif(NOT RAPIDJSON)
|
endif(NOT RAPIDJSON)
|
||||||
|
|
||||||
add_library(rapidjson STATIC IMPORTED ${RAPIDJSON})
|
add_library(rapidjson STATIC IMPORTED ${RAPIDJSON})
|
||||||
|
|
||||||
|
# add subdirs
|
||||||
|
|
||||||
add_subdirectory(src)
|
add_subdirectory(src)
|
||||||
add_subdirectory(examples/send-presence)
|
add_subdirectory(examples/send-presence)
|
||||||
|
|
|
@ -11,3 +11,5 @@ if(UNIX)
|
||||||
endif(UNIX)
|
endif(UNIX)
|
||||||
|
|
||||||
target_include_directories(discord-rpc PRIVATE ${RAPIDJSON}/include)
|
target_include_directories(discord-rpc PRIVATE ${RAPIDJSON}/include)
|
||||||
|
|
||||||
|
add_dependencies(discord-rpc clangformat)
|
||||||
|
|
|
@ -31,17 +31,14 @@ struct RpcConnectionUnix : public RpcConnection {
|
||||||
|
|
||||||
void RpcConnection::Open()
|
void RpcConnection::Open()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void RpcConnection::Close()
|
void RpcConnection::Close()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void RpcConnection::Write(const void* data, size_t length)
|
void RpcConnection::Write(const void* data, size_t length)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RpcMessageFrame* RpcConnection::Read()
|
RpcMessageFrame* RpcConnection::Read()
|
||||||
|
@ -59,5 +56,4 @@ RpcMessageFrame* RpcConnection::GetNextFrame()
|
||||||
|
|
||||||
void RpcConnection::WriteFrame(RpcMessageFrame* frame)
|
void RpcConnection::WriteFrame(RpcMessageFrame* frame)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue