diff options
author | Brad King <brad.king@kitware.com> | 2016-04-28 14:20:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-04-28 14:20:40 (GMT) |
commit | 26790ad93ba80f109c9033525c2ff5ac08d883bb (patch) | |
tree | 931e6725b30a5d2a25e4f1bff633d4a3361a811e /Tests/Wrapping/wrapFLTK.cxx | |
parent | 5b4f771fd7eb02f4bb5248194796d191347e492b (diff) | |
download | CMake-26790ad93ba80f109c9033525c2ff5ac08d883bb.zip CMake-26790ad93ba80f109c9033525c2ff5ac08d883bb.tar.gz CMake-26790ad93ba80f109c9033525c2ff5ac08d883bb.tar.bz2 |
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.
Diffstat (limited to 'Tests/Wrapping/wrapFLTK.cxx')
-rw-r--r-- | Tests/Wrapping/wrapFLTK.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/Wrapping/wrapFLTK.cxx b/Tests/Wrapping/wrapFLTK.cxx new file mode 100644 index 0000000..78f2de1 --- /dev/null +++ b/Tests/Wrapping/wrapFLTK.cxx @@ -0,0 +1 @@ +int main(void) { return 0; } |