Disable the tests for Watcom.
They are timing out and showing up on the dashboard.
This commit is contained in:
parent
7ac0ab1f88
commit
99b2aabd46
@ -2,6 +2,21 @@ cmake_minimum_required(VERSION 2.8.5 FATAL_ERROR)
|
|||||||
|
|
||||||
project(GenerateExportHeader)
|
project(GenerateExportHeader)
|
||||||
|
|
||||||
|
# Prevent timeout on Watcom by not running the tests.
|
||||||
|
if ("${CMAKE_COMPILER_ID}" MATCHES Watcom)
|
||||||
|
file(WRITE
|
||||||
|
"${CMAKE_CURRENT_BINARY_DIR}/main.cxx"
|
||||||
|
"int main() { return 0; }
|
||||||
|
"
|
||||||
|
)
|
||||||
|
|
||||||
|
add_executable(
|
||||||
|
GenerateExportHeader
|
||||||
|
"${CMAKE_CURRENT_BINARY_DIR}/main.cxx"
|
||||||
|
)
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
|
||||||
include(CheckCXXCompilerFlag)
|
include(CheckCXXCompilerFlag)
|
||||||
|
|
||||||
set( CMAKE_INCLUDE_CURRENT_DIR ON )
|
set( CMAKE_INCLUDE_CURRENT_DIR ON )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user