You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
313 B
14 lines
313 B
foreach(CONFIG DEBUG MINSIZEREL RELEASE RELWITHDEBINFO)
|
|
string(REPLACE "/MD" "/MT"
|
|
"CMAKE_CXX_FLAGS_${CONFIG}"
|
|
"${CMAKE_CXX_FLAGS_${CONFIG}}"
|
|
)
|
|
endforeach()
|
|
|
|
add_library(CMakeWiXCustomActions MODULE
|
|
detect_nsis_overwrite.cpp
|
|
exports.def
|
|
)
|
|
|
|
target_link_libraries(CMakeWiXCustomActions PRIVATE msi)
|