소스 검색

Short-circuit the tests on unsupported compilers.

Stephen Kelly 14 년 전
부모
커밋
6aca0e257b
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      Tests/Module/GenerateExportHeader/CMakeLists.txt

+ 6 - 0
Tests/Module/GenerateExportHeader/CMakeLists.txt

@@ -88,6 +88,12 @@ include(GenerateExportHeader)
 
 add_compiler_export_flags()
 
+if(NOT ((USE_COMPILER_HIDDEN_VISIBILITY AND COMPILER_HAS_HIDDEN_VISIBILITY) OR WIN32))
+  message(WARNING "Compiler does not support export feature")
+  return()
+endif()
+
+
 if (MSVC)
   add_definitions(-DCOMPILER_IS_MSVC)
 endif()