Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Require g++ v4.7 at least to not speak prehistorical C++
[simgrid.git] / buildtools / Cmake / PrintArgs.cmake
index 27d6d6d..84485c9 100644 (file)
@@ -61,6 +61,7 @@ if(enable_print_message)
   message("HAVE_ASPRINTF ...............: ${HAVE_ASPRINTF}")
   message("HAVE_VASPRINTF ..............: ${HAVE_VASPRINTF}")
   message("HAVE_MMAP ...................: ${HAVE_MMAP}")
+  message("HAVE_PRIVATIZATION ..........: ${HAVE_PRIVATIZATION}")
   message("HAVE_PROCESS_VM_READV .......: ${HAVE_PROCESS_VM_READV}")
   message("HAVE_THREAD_LOCAL_STORAGE ...: ${HAVE_THREAD_LOCAL_STORAGE}")
   message("HAVE_MMALLOC ................: ${HAVE_MMALLOC}")
@@ -101,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  (path: ${ns3_path})")
 endif()
 
 message("        Compile Java ................: ${HAVE_Java}")