cmake: Do not clang-format check the externally imported json library

llvm-svn: 177795
This commit is contained in:
Tobias Grosser 2013-03-23 01:04:48 +00:00
parent 719a4d5d83
commit 0db04b4778
1 changed files with 2 additions and 0 deletions

View File

@ -160,6 +160,8 @@ configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/include/polly/Config/config.h.cmake
# Add target to check formatting of polly files
file( GLOB_RECURSE files *.h *.cpp)
file( GLOB_RECURSE jsonfiles lib/JSON/*.h lib/JSON/*.cpp)
list( REMOVE_ITEM files ${jsonfiles} )
add_custom_command( OUTPUT formatting COMMAND
${CMAKE_CURRENT_SOURCE_DIR}/utils/check_format.sh ${files})
add_custom_target(polly-check-format DEPENDS formatting)