mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-08 15:20:45 +01:00
Externals/discord: Don't run clang-format on source files
It's annoying to have source files automatically reformatted every time Dolphin is built because it causes git to consider the source tree to be dirty.
This commit is contained in:
parent
e3a52b3361
commit
a482299df6
14
Externals/discord-rpc/CMakeLists.txt
vendored
14
Externals/discord-rpc/CMakeLists.txt
vendored
@ -9,20 +9,6 @@ file(GLOB_RECURSE ALL_SOURCE_FILES
|
||||
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)
|
||||
|
||||
# add subdirs
|
||||
|
||||
add_subdirectory(src)
|
||||
|
4
Externals/discord-rpc/src/CMakeLists.txt
vendored
4
Externals/discord-rpc/src/CMakeLists.txt
vendored
@ -115,10 +115,6 @@ if (${BUILD_SHARED_LIBS})
|
||||
target_compile_definitions(discord-rpc PRIVATE -DDISCORD_BUILDING_SDK)
|
||||
endif(${BUILD_SHARED_LIBS})
|
||||
|
||||
if (CLANG_FORMAT_CMD)
|
||||
add_dependencies(discord-rpc clangformat)
|
||||
endif(CLANG_FORMAT_CMD)
|
||||
|
||||
# install
|
||||
|
||||
install(
|
||||
|
Loading…
Reference in New Issue
Block a user