mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00
16 lines
789 B
CMake
16 lines
789 B
CMake
include("${CMAKE_CURRENT_LIST_DIR}/Default.cmake")
|
|
|
|
set_config_specific_property("OUTPUT_DIRECTORY" "${CMAKE_SOURCE_DIR}$<$<NOT:$<STREQUAL:${CMAKE_VS_PLATFORM_NAME},Win32>>:/${CMAKE_VS_PLATFORM_NAME}>/${PROPS_CONFIG}")
|
|
|
|
if(MSVC)
|
|
create_property_reader("DEFAULT_CXX_DEBUG_RUNTIME_LIBRARY")
|
|
create_property_reader("DEFAULT_CXX_RUNTIME_LIBRARY")
|
|
create_property_reader("DEFAULT_CXX_EXCEPTION_HANDLING")
|
|
create_property_reader("DEFAULT_CXX_DEBUG_INFORMATION_FORMAT")
|
|
|
|
set_config_specific_property("DEFAULT_CXX_DEBUG_RUNTIME_LIBRARY" "/MDd")
|
|
set_config_specific_property("DEFAULT_CXX_RUNTIME_LIBRARY" "/MD")
|
|
set_config_specific_property("DEFAULT_CXX_EXCEPTION_HANDLING" "/EHsc")
|
|
set_config_specific_property("DEFAULT_CXX_DEBUG_INFORMATION_FORMAT" "/Zi")
|
|
endif()
|