remove msvc redistributable dependency

This commit is contained in:
Akash Mozumdar 2018-07-19 15:47:48 -04:00
parent 7df8e40fc9
commit 5ae1e811d7
3 changed files with 4 additions and 4 deletions

View File

@ -31,8 +31,8 @@ add_compile_options(
/wd4819 # config.pri
/MP
/GS-
# $<$<CONFIG:Release>:/MT>
# $<$<CONFIG:Debug>:/MTd>
$<$<CONFIG:MinSizeRel>:/MT>
$<$<CONFIG:Debug>:/MTd>
)
add_definitions(

View File

@ -26,7 +26,7 @@ set_target_properties(vnrhost PROPERTIES LINK_FLAGS /SUBSYSTEM:WINDOWS)
target_compile_options(vnrhost PRIVATE
# /GR-
$<$<CONFIG:Release>:>
$<$<CONFIG:MinSizeRel>:/MT>
$<$<CONFIG:Debug>:>
)

View File

@ -68,7 +68,7 @@ set_target_properties(vnrhook PROPERTIES
target_compile_options(vnrhook PRIVATE
/EHa
$<$<CONFIG:Release>:>
$<$<CONFIG:MinSizeRel>:/MT>
$<$<CONFIG:Debug>:>
)