Skip to content

Commit f52e911

Browse files
authored
Fix mismatching MT runtime for static MSVC library (#159)
1 parent 9ec658a commit f52e911

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ macro(CeleroSetDefaultCompilerOptions)
4343
target_compile_options(${PROJECT_NAME} PRIVATE /MD$<$<CONFIG:Debug>:d>)
4444
endif()
4545
else()
46-
target_compile_options(${PROJECT_NAME} PRIVATE /MD$<$<CONFIG:Debug>:d>)
46+
target_compile_options(${PROJECT_NAME} PRIVATE /MT$<$<CONFIG:Debug>:d>)
4747
endif()
4848
endif()
4949

0 commit comments

Comments
 (0)