diff options
author | David Cole <david.cole@kitware.com> | 2012-11-28 17:11:52 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2012-11-28 17:11:52 (GMT) |
commit | 223850576b070f66a5eec5340b7eefa8ecf7b5de (patch) | |
tree | c1b587cefc323e2547a3c3f8f9d23bd4278de3cc | |
parent | 7ae7d6650344f7a36216af8424abbf0b834688d1 (diff) | |
download | CMake-223850576b070f66a5eec5340b7eefa8ecf7b5de.zip CMake-223850576b070f66a5eec5340b7eefa8ecf7b5de.tar.gz CMake-223850576b070f66a5eec5340b7eefa8ecf7b5de.tar.bz2 |
Watcom: Avoid prompt from wmake about dll with no exports...
...by simply building a STATIC lib for the test, instead of a
SHARED one. Fixes test timeout on the Watcom dashboards.
-rw-r--r-- | Tests/EmptyDepends/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/EmptyDepends/CMakeLists.txt b/Tests/EmptyDepends/CMakeLists.txt index a24382c..832d9dc 100644 --- a/Tests/EmptyDepends/CMakeLists.txt +++ b/Tests/EmptyDepends/CMakeLists.txt @@ -12,4 +12,4 @@ add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/qrc_my.cxx add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/my.qrc COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_BINARY_DIR}/my.qrc) -add_library(qrc SHARED ${CMAKE_BINARY_DIR}/qrc_my.cxx) +add_library(qrc STATIC ${CMAKE_BINARY_DIR}/qrc_my.cxx) |