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.
This commit is contained in:
David Cole 2012-11-28 12:11:52 -05:00
parent 7ae7d66503
commit 223850576b
1 changed files with 1 additions and 1 deletions

View File

@ -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)