Quellcode durchsuchen

Fixed unknown target

Christophe Riccio vor 7 Jahren
Ursprung
Commit
0fdf6a3f3a
1 geänderte Dateien mit 9 neuen und 5 gelöschten Zeilen
  1. 9 5
      test/core/core_setup_message.cpp

+ 9 - 5
test/core/core_setup_message.cpp

@@ -207,11 +207,15 @@ int main()
 {
 	int Error = 0;
 
-	Error += test_cpp_version();
-	Error += test_compiler();
-	Error += test_model();
-	Error += test_instruction_set();
-	Error += test_operators();
+#	if !defined(GLM_FORCE_PLATFORM_UNKNOWN) && !defined(GLM_FORCE_COMPILER_UNKNOWN) && !defined(GLM_FORCE_ARCH_UNKNOWN) && !defined(GLM_FORCE_CXX_UNKNOWN)
+		
+		Error += test_cpp_version();
+		Error += test_compiler();
+		Error += test_model();
+		Error += test_instruction_set();
+		Error += test_operators();
+
+#	endif
 	
 	return Error;
 }