From ae9073ac5080cbc47a827c6d90432f5d755c3ed8 Mon Sep 17 00:00:00 2001 From: sjunges Date: Wed, 27 Jul 2016 13:39:10 +0200 Subject: [PATCH] moved cpplint in 3rdparty Former-commit-id: abccea7438a0acc670a59a6a5bed4095684fb851 --- CMakeLists.txt | 2 +- cpplint.py => resources/3rdparty/cpplint/cpplint.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename cpplint.py => resources/3rdparty/cpplint/cpplint.py (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5ab8c5f73..c53d049b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -332,6 +332,6 @@ add_custom_target(memcheck-functional-tests valgrind --leak-check=full --show-re add_custom_target(memcheck-performance-tests valgrind --leak-check=full --show-reachable=yes ${PROJECT_BINARY_DIR}/storm-performance-tests -v --fix-deadlocks DEPENDS storm-performance-tests) set(CPPLINT_ARGS --filter=-whitespace/tab,-whitespace/line_length,-legal/copyright,-readability/streams) -add_custom_target(style python cpplint.py ${CPPLINT_ARGS} `find ./src/ -iname "*.h" -or -iname "*.cpp" `) +add_custom_target(style python resources/3rdparty/cpplint/cpplint.py ${CPPLINT_ARGS} `find ./src/ -iname "*.h" -or -iname "*.cpp" `) include(StormCPackConfig.cmake) diff --git a/cpplint.py b/resources/3rdparty/cpplint/cpplint.py similarity index 100% rename from cpplint.py rename to resources/3rdparty/cpplint/cpplint.py