Browse Source

Disable WX_USE_REL_AND_DBG under vcpkg as it doesnt really play nice with lib and debug/lib

This is usually fixed by the hackjob in vcpkg for the wxwidgets find module being so...crazy
pull/18/head
Mark Roszko 4 months ago
parent
commit
5f145d02bd
  1. 4
      cmake/FindwxWidgets.cmake

4
cmake/FindwxWidgets.cmake

@ -625,6 +625,10 @@ if(wxWidgets_FIND_STYLE STREQUAL "win32")
set(WX_USE_REL_AND_DBG FALSE)
endif()
if( VCPKG_TOOLCHAIN )
set(WX_USE_REL_AND_DBG FALSE)
endif()
# Get configuration parameters from the name.
WX_GET_NAME_COMPONENTS(${wxWidgets_CONFIGURATION} PF UNV UCD DBG)

Loading…
Cancel
Save