]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdConfiguration.cxx
Clean code
[bbtk.git] / packages / std / src / bbstdConfiguration.cxx
index 6891a83a969b2701465a88a43080cfeb9f17b324..de559dceb2ffc1beeccf2cef0bda4a37bbd6673e 100644 (file)
@@ -61,10 +61,14 @@ namespace bbstd
     bbSetOutputDocPath( bbtk::ConfigurationFile::GetInstance().Get_doc_path() );
     bbSetOutputFileSeparator( bbtk::ConfigurationFile::GetInstance().Get_file_separator() );
     
-#if defined(__GNUC__)
-    bbSetOutputSystemType( 0 );
-#elif defined(_WIN32)
+#if defined(_WIN32)
     bbSetOutputSystemType( 1 );
+#elif defined(__GNUC__)
+    #if defined(MACOSX)
+      bbSetOutputSystemType( 2 );
+    #else  // Linux
+      bbSetOutputSystemType( 0 );
+    #endif
 #else
     bbSetOutputSystemType( -1 );
 #endif