Skip to content

Commit 141b1df

Browse files
committed
fix(MSVC): another test
1 parent 45422ba commit 141b1df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmake/SuperBuild.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ endif()
3434
if("${CMAKE_CXX_STANDARD}" STREQUAL "")
3535
set(CMAKE_CXX_STANDARD 11)
3636
endif()
37-
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<BOOL:${BUILD_SHARED_LIBS}>:DLL>")
37+
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreadedDLL")
3838

3939
# Begin configuration of the superbuild project
4040
project(SuperBuild NONE)

cmake/utils.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ if(NOT BUILD_SHARED_LIBS)
5555
$<$<CXX_COMPILER_ID:MSVC>:/INCREMENTAL:NO>
5656
)
5757
endif()
58-
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<BOOL:${BUILD_SHARED_LIBS}>:DLL>")
58+
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreadedDLL")
5959

6060
#------------------------------------------------------------------------------------------------
6161
# Install configuration

0 commit comments

Comments
 (0)