Merge pull request #873 from dotnet/hostpolcrt

Link CRT into hostpolicy
This commit is contained in:
Sridhar Periyasamy 2016-01-15 14:54:31 -08:00
commit 7c5f505276

View file

@ -5,9 +5,9 @@ cmake_minimum_required (VERSION 2.6)
project(hostpolicy)
if(WIN32)
add_compile_options($<$<CONFIG:RelWithDebInfo>:/MD>)
add_compile_options($<$<CONFIG:Release>:/MD>)
add_compile_options($<$<CONFIG:Debug>:/MDd>)
add_compile_options($<$<CONFIG:RelWithDebInfo>:/MT>)
add_compile_options($<$<CONFIG:Release>:/MT>)
add_compile_options($<$<CONFIG:Debug>:/MTd>)
endif()
include(../setup.cmake)