Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
another try to fix the compilation on travis
authorMartin Quinson <martin.quinson@loria.fr>
Thu, 27 Aug 2015 21:03:25 +0000 (23:03 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Thu, 27 Aug 2015 21:06:33 +0000 (23:06 +0200)
commit21e5b00f0755b918ab47e7f87fa515495ad2f31b
treecfbc3dad37324d43571c7d0db5292605010b26db
parent2568ec7bdc945fa4beebf200756910f8b5b7903a
another try to fix the compilation on travis

-if (CMAKE_COMPILER_IS_GNUCC)
+if(${CMAKE_C_COMPILER_ID} STREQUAL "GNU")

The worse is that this is not a stupid attempt. According to
http://www.cmake.org/pipermail/cmake/2013-October/056081.html , CMake
2.8.2 learned about "Clang", so only versions older than that would
think the compiler is "GNU"...

Cmake is really depressive.
CMakeLists.txt