From 50f2616e31336549bce6f4621577da1c90e62a05 Mon Sep 17 00:00:00 2001
From: Tobias Leibner <tobias.leibner@uni-muenster.de>
Date: Mon, 25 Jan 2016 11:04:28 +0100
Subject: [PATCH] [cmake] fix adding tests to format

---
 cmake/modules/DuneXtCommonMacros.cmake | 4 +++-
 dune/xt/CMakeLists.txt                 | 2 +-
 dune/xt/common/test/CMakeLists.txt     | 6 ++++--
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/cmake/modules/DuneXtCommonMacros.cmake b/cmake/modules/DuneXtCommonMacros.cmake
index 5b305e1e3..97e75cfba 100644
--- a/cmake/modules/DuneXtCommonMacros.cmake
+++ b/cmake/modules/DuneXtCommonMacros.cmake
@@ -50,7 +50,9 @@ macro(add_format)
     find_program(FORMAT NAMES clang-format clang-format-3.4 clang-format-3.5 clang-format-3.6 clang-format-3.7 clang-format-3.8 clang-format-3.9)
     if(EXISTS ${FORMAT})
         message(STATUS "adding format target")
-        add_custom_target( format SOURCES ${ARGN} )
+	if (NOT TARGET format)
+            add_custom_target( format SOURCES ${ARGN} )
+        endif (NOT TARGET format)
         foreach(_file ${ARGN})
             string(REPLACE "/" "_" fn ${_file})
             if(NOT EXISTS ${_file})
diff --git a/dune/xt/CMakeLists.txt b/dune/xt/CMakeLists.txt
index 8b0d73913..5ca7c1b3c 100644
--- a/dune/xt/CMakeLists.txt
+++ b/dune/xt/CMakeLists.txt
@@ -27,7 +27,7 @@ dune_library_add_sources(dunextcommon SOURCES ${lib_dune_xt_common_sources})
 add_analyze(${lib_dune_xt_common_sources})
 FILE( GLOB_RECURSE _header "${CMAKE_CURRENT_SOURCE_DIR}/*.hh" )
 
-add_format(${lib_dune_xt_common_sources} ${test_sources} ${_header})
+add_format(${lib_dune_xt_common_sources} ${_header})
 install(DIRECTORY ${DUNE_XT_COMMON_TEST_DIR}/gtest
         DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dune/xt/test/
         FILES_MATCHING PATTERN "*")
diff --git a/dune/xt/common/test/CMakeLists.txt b/dune/xt/common/test/CMakeLists.txt
index 7b401accd..cb181cf6b 100644
--- a/dune/xt/common/test/CMakeLists.txt
+++ b/dune/xt/common/test/CMakeLists.txt
@@ -14,5 +14,7 @@ DEPENDENCYCHECK( ${xtcommon} )
 set_source_files_properties( ${DUNE_HEADERS} PROPERTIES HEADER_FILE_ONLY 1 )
 
 BEGIN_TESTCASES(dunextcommon)
- 
-END_TESTCASES()
\ No newline at end of file
+
+add_format(${test_sources})
+
+END_TESTCASES()
-- 
GitLab