From 511d809dd112207f4662c4af1bdf8c9c8eb0bc72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Sat, 18 Jan 2014 18:14:16 +0100 Subject: [PATCH] Enable cmake tests with Clang too --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 36b0f930b..afb896ed1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,6 +49,9 @@ add_subdirectory(include) if(CMAKE_COMPILER_IS_GNUCC) add_subdirectory(tests) endif(CMAKE_COMPILER_IS_GNUCC) +if(CMAKE_COMPILER_IS_CLANG) + add_subdirectory(tests) +endif(CMAKE_COMPILER_IS_CLANG) add_subdirectory(programs)