diff options
author | Brad King <brad.king@kitware.com> | 2013-11-02 17:41:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-11-02 17:41:42 (GMT) |
commit | 922876b0c001346de34a36f9224cab8633e16f71 (patch) | |
tree | 14feddf5f22e0686a93a70276d987cba787c2738 /Modules/Platform/Windows-MSVC-CXX.cmake | |
parent | 81eab21eb589f72cac6d7aa2eb0302f5f8d46864 (diff) | |
parent | 216afc8a818c4f8906b17aefedbc9b9ed60564a8 (diff) | |
download | CMake-922876b0c001346de34a36f9224cab8633e16f71.zip CMake-922876b0c001346de34a36f9224cab8633e16f71.tar.gz CMake-922876b0c001346de34a36f9224cab8633e16f71.tar.bz2 |
Merge branch 'vs12-parallel-cl-FS' into release
Diffstat (limited to 'Modules/Platform/Windows-MSVC-CXX.cmake')
-rw-r--r-- | Modules/Platform/Windows-MSVC-CXX.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/Platform/Windows-MSVC-CXX.cmake b/Modules/Platform/Windows-MSVC-CXX.cmake index fdd1dae..0e85005 100644 --- a/Modules/Platform/Windows-MSVC-CXX.cmake +++ b/Modules/Platform/Windows-MSVC-CXX.cmake @@ -1,3 +1,6 @@ include(Platform/Windows-MSVC) set(_COMPILE_CXX " /TP") +if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 18.0) + set(_FS_CXX " /FS") +endif() __windows_compiler_msvc(CXX) |