Files
QIDISlicer/deps/+wxWidgets/wxWidgets.cmake

68 lines
2.0 KiB
CMake
Raw Normal View History

2023-06-26 16:57:17 +08:00
set(_wx_git_tag v3.2.0)
2023-06-10 10:14:12 +08:00
set(_wx_toolkit "")
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
2023-12-27 18:02:35 +08:00
option(DEP_WX_GTK3 "Build wxWidgets for GTK3 instead of GTK2" OFF)
2023-06-10 10:14:12 +08:00
set(_gtk_ver 2)
if (DEP_WX_GTK3)
set(_gtk_ver 3)
endif ()
set(_wx_toolkit "-DwxBUILD_TOOLKIT=gtk${_gtk_ver}")
2023-06-26 16:57:17 +08:00
set(_wx_private_font "-DwxUSE_PRIVATE_FONTS=1")
else ()
set(_wx_private_font "-DwxUSE_PRIVATE_FONTS=0")
2023-06-10 10:14:12 +08:00
endif()
2023-06-26 16:57:17 +08:00
if (MSVC)
set(_wx_edge "-DwxUSE_WEBVIEW_EDGE=ON")
else ()
set(_wx_edge "-DwxUSE_WEBVIEW_EDGE=OFF")
endif ()
if (MSVC)
set(_patch_cmd ${PATCH_CMD} ${CMAKE_CURRENT_LIST_DIR}/0001-wxWidget-fix.patch)
else ()
set(_patch_cmd test -f WXWIDGETS_PATCHED || ${PATCH_CMD} ${CMAKE_CURRENT_LIST_DIR}/0001-wxWidget-fix.patch && touch WXWIDGETS_PATCHED)
endif ()
2023-06-10 10:14:12 +08:00
set(_unicode_utf8 OFF)
if (UNIX AND NOT APPLE) # wxWidgets will not use char as the underlying type for wxString unless its forced to.
set (_unicode_utf8 ON)
endif()
2023-12-27 18:02:35 +08:00
add_cmake_project(wxWidgets
2023-06-27 11:07:34 +08:00
URL https://github.com/prusa3d/wxWidgets/archive/78aa2dc0ea7ce99dc19adc1140f74c3e2e3f3a26.zip
URL_HASH SHA256=94b7d972373503e380e5a8b0ca63b1ccb956da4006402298dd89a0c5c7041b1e
2023-06-10 10:14:12 +08:00
CMAKE_ARGS
2023-12-27 18:02:35 +08:00
"-DCMAKE_DEBUG_POSTFIX:STRING="
2023-06-10 10:14:12 +08:00
-DwxBUILD_PRECOMP=ON
${_wx_toolkit}
2023-06-26 16:57:17 +08:00
-DwxUSE_MEDIACTRL=ON
2023-06-10 10:14:12 +08:00
-DwxUSE_DETECT_SM=OFF
-DwxUSE_UNICODE=ON
2023-06-26 16:57:17 +08:00
${_wx_private_font}
2023-06-10 10:14:12 +08:00
-DwxUSE_UNICODE_UTF8=${_unicode_utf8}
-DwxUSE_OPENGL=ON
2023-06-26 16:57:17 +08:00
-DwxUSE_WEBVIEW=ON
${_wx_edge}
-DwxUSE_WEBVIEW_IE=OFF
-DwxUSE_STC=OFF
-DwxUSE_AUI=ON
2023-06-10 10:14:12 +08:00
-DwxUSE_LIBPNG=sys
-DwxUSE_ZLIB=sys
-DwxUSE_NANOSVG=sys
-DwxUSE_NANOSVG_EXTERNAL=ON
-DwxUSE_REGEX=OFF
-DwxUSE_LIBXPM=builtin
-DwxUSE_LIBJPEG=sys
-DwxUSE_LIBTIFF=sys
-DwxUSE_EXPAT=sys
-DwxUSE_LIBSDL=OFF
-DwxUSE_XTEST=OFF
-DwxUSE_GLCANVAS_EGL=OFF
-DwxUSE_WEBREQUEST=OFF
)
2023-12-27 18:02:35 +08:00
set(DEP_wxWidgets_DEPENDS ZLIB PNG EXPAT TIFF JPEG NanoSVG)