summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-04-28 10:20:40 -0400
committerBrad King <brad.king@kitware.com>2016-04-28 10:20:40 -0400
commit26790ad93ba80f109c9033525c2ff5ac08d883bb (patch)
tree931e6725b30a5d2a25e4f1bff633d4a3361a811e
parent5b4f771fd7eb02f4bb5248194796d191347e492b (diff)
downloadcmake-26790ad93ba80f109c9033525c2ff5ac08d883bb.tar.gz
Tests: Add workaround to Wrapping test for Watcom failure
The Watcom tools do not seem to like our wrapFLTK executable to mix C and C++ sources. Work around this by using C++ for both sources.
-rw-r--r--Tests/Wrapping/CMakeLists.txt2
-rw-r--r--Tests/Wrapping/wrapFLTK.cxx (renamed from Tests/Wrapping/wrapFLTK.c)0
2 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Wrapping/CMakeLists.txt b/Tests/Wrapping/CMakeLists.txt
index aca36bc314..7d9a4c67f3 100644
--- a/Tests/Wrapping/CMakeLists.txt
+++ b/Tests/Wrapping/CMakeLists.txt
@@ -93,7 +93,7 @@ add_library(wraplibFLTK ${wraplibFLTK_FLTK_UI_SRCS})
add_dependencies(wraplibFLTK fakefluid)
add_dependencies(fakefluid Wrap)
fltk_wrap_ui (wrapFLTK fltk2.fl)
-add_executable(wrapFLTK wrapFLTK.c ${wrapFLTK_FLTK_UI_SRCS})
+add_executable(wrapFLTK wrapFLTK.cxx ${wrapFLTK_FLTK_UI_SRCS})
target_link_libraries(wrapFLTK wraplibFLTK)
add_dependencies(wrapFLTK fakefluid)
diff --git a/Tests/Wrapping/wrapFLTK.c b/Tests/Wrapping/wrapFLTK.cxx
index 78f2de106c..78f2de106c 100644
--- a/Tests/Wrapping/wrapFLTK.c
+++ b/Tests/Wrapping/wrapFLTK.cxx