2017-05-30 22:00:52 +08:00
|
|
|
include(vcpkg_common_functions)
|
2017-06-08 18:32:20 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO wxWidgets/wxWidgets
|
2018-02-24 17:29:13 +08:00
|
|
|
REF v3.1.1
|
|
|
|
SHA512 f6d8974e2f48bae7e96a8938df3ad5efc403036c1dcbe2b48edd276ee7923802ba3e95e3f3bd9db17985e427b8e4f78950df0cbba83ae99d508ed04633816c95
|
2017-06-08 18:32:20 +08:00
|
|
|
HEAD_REF master
|
2017-05-30 22:00:52 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_apply_patches(
|
2017-06-08 18:32:20 +08:00
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
2018-02-24 17:29:13 +08:00
|
|
|
PATCHES "${CMAKE_CURRENT_LIST_DIR}/disable-platform-lib-dir.patch"
|
2017-05-30 22:00:52 +08:00
|
|
|
)
|
|
|
|
|
2018-02-24 17:29:13 +08:00
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
|
|
PREFER_NINJA
|
|
|
|
OPTIONS
|
|
|
|
-DwxUSE_REGEX=builtin
|
|
|
|
-DwxUSE_ZLIB=sys
|
|
|
|
-DwxUSE_EXPAT=sys
|
|
|
|
-DwxUSE_LIBJPEG=sys
|
|
|
|
-DwxUSE_LIBPNG=sys
|
|
|
|
-DwxUSE_LIBTIFF=sys
|
|
|
|
-DwxUSE_STL=ON
|
|
|
|
-DwxBUILD_DISABLE_PLATFORM_LIB_DIR=ON
|
|
|
|
)
|
2017-05-30 22:00:52 +08:00
|
|
|
|
2018-02-24 17:29:13 +08:00
|
|
|
vcpkg_install_cmake()
|
2017-05-30 22:00:52 +08:00
|
|
|
|
2018-02-24 17:29:13 +08:00
|
|
|
file(GLOB DLLS "${CURRENT_PACKAGES_DIR}/lib/*.dll")
|
|
|
|
if(DLLS)
|
|
|
|
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/bin)
|
|
|
|
foreach(DLL ${DLLS})
|
|
|
|
get_filename_component(N "${DLL}" NAME)
|
|
|
|
file(RENAME ${DLL} ${CURRENT_PACKAGES_DIR}/bin/${N})
|
|
|
|
endforeach()
|
2017-05-30 22:00:52 +08:00
|
|
|
endif()
|
2018-02-24 17:29:13 +08:00
|
|
|
file(GLOB DLLS "${CURRENT_PACKAGES_DIR}/debug/lib/*.dll")
|
|
|
|
if(DLLS)
|
|
|
|
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/debug/bin)
|
|
|
|
foreach(DLL ${DLLS})
|
|
|
|
get_filename_component(N "${DLL}" NAME)
|
|
|
|
file(RENAME ${DLL} ${CURRENT_PACKAGES_DIR}/debug/bin/${N})
|
|
|
|
endforeach()
|
2017-05-30 22:00:52 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Handle copyright
|
|
|
|
file(COPY ${SOURCE_PATH}/docs/licence.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/wxwidgets)
|
2018-07-31 02:33:59 +08:00
|
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/share/wxwidgets/licence.txt ${CURRENT_PACKAGES_DIR}/share/wxwidgets/copyright)
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|