mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-16 15:19:03 +08:00
6e16931acd
* [wxWidgets] Remove debug asserts from Release build. Currently when building wxWidgets in Release mode, the debug asserts are enabled. This fixes this issue by providing a necessary define to disable them. Ref: https://docs.wxwidgets.org/3.1.6/group__group__funcmacro__debug.html [wxCharts, vcpkg-ci-wxwidgets] Update ports to include fix for wxWidgets release build with debug asserts off when building a dynamic/shared library. Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com> * Update wxcharts.json Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
37 lines
1.3 KiB
CMake
37 lines
1.3 KiB
CMake
set(VCPKG_POLICY_EMPTY_PACKAGE enabled)
|
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS OPTIONS
|
|
FEATURES
|
|
wxrc USE_WXRC
|
|
)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${CURRENT_INSTALLED_DIR}/share/wxwidgets/example"
|
|
DISABLE_PARALLEL_CONFIGURE # Need separate dbg log for following test
|
|
OPTIONS
|
|
${OPTIONS}
|
|
-DCMAKE_CONFIG_RUN=1
|
|
"-DPRINT_VARS=CMAKE_CONFIG_RUN;wxWidgets_LIBRARIES"
|
|
OPTIONS_RELEASE
|
|
-DwxBUILD_DEBUG_LEVEL=0
|
|
)
|
|
vcpkg_cmake_build()
|
|
|
|
if(NOT VCPKG_BUILD_TYPE)
|
|
# Check that debug libs are still used after re-configuration, #24489
|
|
set(config_log "config-${TARGET_TRIPLET}-dbg")
|
|
vcpkg_execute_required_process(
|
|
COMMAND "${CMAKE_COMMAND}" -DCMAKE_CONFIG_RUN=2 .
|
|
WORKING_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg"
|
|
LOGNAME "${config_log}-2"
|
|
)
|
|
file(STRINGS "${CURRENT_BUILDTREES_DIR}/${config_log}-out.log" expected REGEX "wxWidgets_LIBRARIES:=")
|
|
file(STRINGS "${CURRENT_BUILDTREES_DIR}/${config_log}-2-out.log" actual REGEX "wxWidgets_LIBRARIES:=")
|
|
if(NOT actual STREQUAL expected)
|
|
message(FATAL_ERROR "wxWidgets libraries changed after CMake re-run\n"
|
|
"actual:\n${actual}\n"
|
|
"expected:\n ${expected}\n"
|
|
)
|
|
endif()
|
|
endif()
|