diff options
author | Brad King <brad.king@kitware.com> | 2010-10-05 19:26:38 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2010-10-05 19:26:38 (GMT) |
commit | 111f81c930dd2ba5db7d83670bba814c12dc3c95 (patch) | |
tree | 02def8618ca0a07b8a39d641c3d2cb3a48240b79 | |
parent | b38297d2d1da5647fdf07c10e0776a5e7a4a3db9 (diff) | |
parent | 525320679887d7df4bad5e619ceafdf2bfe891c5 (diff) | |
download | CMake-111f81c930dd2ba5db7d83670bba814c12dc3c95.zip CMake-111f81c930dd2ba5db7d83670bba814c12dc3c95.tar.gz CMake-111f81c930dd2ba5db7d83670bba814c12dc3c95.tar.bz2 |
Merge topic 'fix_hpux_test_failure'
5253206 Add a new line to the end of the generated main.cxx for the hpux compiler.
-rw-r--r-- | Tests/CheckCompilerRelatedVariables/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/CheckCompilerRelatedVariables/CMakeLists.txt b/Tests/CheckCompilerRelatedVariables/CMakeLists.txt index 7206f1d..8095a1c 100644 --- a/Tests/CheckCompilerRelatedVariables/CMakeLists.txt +++ b/Tests/CheckCompilerRelatedVariables/CMakeLists.txt @@ -76,7 +76,8 @@ endif() file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/main.cxx" - "int main() { return 0; }" + "int main() { return 0; } +" ) add_executable( |