diff options
author | Brad King <brad.king@kitware.com> | 2020-08-19 15:49:13 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-08-19 15:51:03 (GMT) |
commit | 162583bb19dab558e33181b581518fda70fb215e (patch) | |
tree | 492d720ada78687251293122e8303901e0158a5f /Modules | |
parent | 80b9c4411b8d6184a6add745e96cc62fced21f1b (diff) | |
parent | 10d7445dd8843d09250c09f607d206bc0305f27d (diff) | |
download | CMake-162583bb19dab558e33181b581518fda70fb215e.zip CMake-162583bb19dab558e33181b581518fda70fb215e.tar.gz CMake-162583bb19dab558e33181b581518fda70fb215e.tar.bz2 |
Merge topic 'CMakeDetermineCXXCompiler-clang-typo'
10d7445dd8 clang: Fix the typo for CMAKE_CXX_COMPILER_ID_TEST_FLAGS
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !5140
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CMakeDetermineCXXCompiler.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CMakeDetermineCXXCompiler.cmake b/Modules/CMakeDetermineCXXCompiler.cmake index 4c2924a..2205c8f 100644 --- a/Modules/CMakeDetermineCXXCompiler.cmake +++ b/Modules/CMakeDetermineCXXCompiler.cmake @@ -84,7 +84,7 @@ else() endif() if(CMAKE_CXX_COMPILER_TARGET) - list(PREPEND CMAKE_CXX_COPMILER_ID_TEST_FLAGS "-c --target=${CMAKE_CXX_COMPILER_TARGET}") + list(PREPEND CMAKE_CXX_COMPILER_ID_TEST_FLAGS "-c --target=${CMAKE_CXX_COMPILER_TARGET}") endif() # Build a small source file to identify the compiler. |