Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
get it to compile on clang on my machine
[simgrid.git] / buildtools / Cmake / PrintArgs.cmake
index 928da8f..87df30f 100644 (file)
@@ -102,11 +102,16 @@ message("        CFlags ......................: ${CMAKE_C_FLAGS}")
 message("        CXXFlags ....................: ${CMAKE_CXX_FLAGS}")
 message("        LDFlags .....................: ${CMAKE_C_LINK_FLAGS}")
 message("")
-if(NOT APPLE AND NOT WIN32)
-  message("        Compile Gtnets ..............: ${HAVE_GTNETS}")
-  message("        Compile NS-3 ................: ${HAVE_NS3}")
-  message("        Gtnets path .................: ${gtnets_path}")
-  message("        NS-3 path ...................: ${ns3_path}")
+
+if (HAVE_GTNETS)
+  message("        Compile Gtnets ..............: yes (path: ${gtnets_path})")
+else()
+  message("        Compile Gtnets ..............: NO (path: ${gtnets_path})")
+endif()
+if (HAVE_NS3)
+  message("        Compile NS-3 ................: yes (path: ${NS3_PATH})")
+else()
+  message("        Compile NS-3 ................: NO  (hint: ${NS3_HINT})")
 endif()
 
 message("        Compile Java ................: ${HAVE_Java}")