Skip to content

Commit

Permalink
Allow to build on Windows with Debug build type (#480)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekilmer committed Feb 9, 2021
1 parent 671760c commit b4e7779
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CMakeLists_vcpkg.txt
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ target_include_directories(remill_settings INTERFACE
if(WIN32)
# warnings and compiler settings
target_compile_options(remill_settings INTERFACE
/MD /nologo /W3 /EHsc /wd4141 /wd4146 /wd4180 /wd4244
"$<$<CONFIG:Debug>:/MDd>$<$<CONFIG:Release>:/MD>"
/nologo /W3 /EHsc /wd4141 /wd4146 /wd4180 /wd4244
/wd4258 /wd4267 /wd4291 /wd4345 /wd4351 /wd4355 /wd4456
/wd4457 /wd4458 /wd4459 /wd4503 /wd4624 /wd4722 /wd4800
/wd4100 /wd4127 /wd4512 /wd4505 /wd4610 /wd4510 /wd4702
Expand Down

0 comments on commit b4e7779

Please sign in to comment.