vcpkg/ports/wt/portfile.cmake

99 lines
3.0 KiB
CMake
Raw Normal View History

2017-05-03 23:02:12 +08:00
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO emweb/wt
[wt] Update to 4.10.4 (#38063) Update `wt` to 4.10.4. * Remove outdated `0002-link-glew.patch` and replace outdated PR #33369. * Fix the following errors: ``` 1> [CMake] CMake Error at F:/vcpkg/scripts/buildsystems/vcpkg.cmake:859 (_find_package): 1> [CMake] Could not find a package configuration file provided by "wt" with any of 1> [CMake] the following names: 1> [CMake] 1> [CMake] wtConfig.cmake 1> [CMake] wt-config.cmake 1> [CMake] 1> [CMake] Add the installation prefix of "wt" to CMAKE_PREFIX_PATH or set "wt_DIR" to 1> [CMake] a directory containing one of the above files. If "wt" provides a separate 1> [CMake] development package or SDK, be sure it has been installed. 1> [CMake] Call Stack (most recent call first): 1> [CMake] CMakeUsage/CMakeLists.txt:17 (find_package) ``` - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [ ] ~The "supports" clause reflects platforms that may be fixed by this new version.~ - [ ] ~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file.~ - [x] Any patches that are no longer applied are deleted from the port's directory. - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file. All features are tested successfully in the following triplet: ``` x86-windows x64-windows x64-windows-static ``` The usage test passed on `x64-windows` (header files found): ``` wt provides CMake targets: # this is heuristically generated, and may not be correct find_package(wt CONFIG REQUIRED) target_link_libraries(main PRIVATE Wt::Wt Wt::HTTP Wt::Test Wt::Isapi) ``` --------- Co-authored-by: Monica <v-liumonica@microsoft.com>
2024-04-11 21:58:38 +08:00
REF "${VERSION}"
SHA512 f41efec1e77bd76f6f66ffb4ff38c98cfc590debb194682e3c6eb3f7b4366c30f8e2bbc16f4c33faa45f6f49d28812215538d20f4abc6c4dc3a226ae9b10ac71
2017-05-03 23:02:12 +08:00
HEAD_REF master
PATCHES
2020-08-22 01:39:52 +08:00
0005-XML_file_path.patch
0006-GraphicsMagick.patch
)
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" SHARED_LIBS)
2021-09-28 08:12:39 +08:00
vcpkg_check_features(
OUT_FEATURE_OPTIONS
FEATURE_OPTIONS
FEATURES
dbo ENABLE_LIBWTDBO
postgresql ENABLE_POSTGRES
sqlite3 ENABLE_SQLITE
sqlserver ENABLE_MSSQLSERVER
openssl ENABLE_SSL
2020-08-22 01:39:52 +08:00
)
if(VCPKG_TARGET_IS_WINDOWS)
set(WT_PLATFORM_SPECIFIC_OPTIONS
-DWT_WRASTERIMAGE_IMPLEMENTATION=Direct2D
-DCONNECTOR_ISAPI=ON
-DENABLE_PANGO=OFF)
else()
set(WT_PLATFORM_SPECIFIC_OPTIONS
-DCONNECTOR_FCGI=OFF
-DENABLE_PANGO=ON
-DHARFBUZZ_INCLUDE_DIR=${CURRENT_INSTALLED_DIR}/include/harfbuzz)
if ("graphicsmagick" IN_LIST FEATURES)
list(APPEND WT_PLATFORM_SPECIFIC_OPTIONS
-DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick)
else()
list(APPEND WT_PLATFORM_SPECIFIC_OPTIONS
-DWT_WRASTERIMAGE_IMPLEMENTATION=none)
endif()
endif()
2021-09-28 08:12:39 +08:00
vcpkg_cmake_configure(
2022-01-27 07:23:50 +08:00
SOURCE_PATH "${SOURCE_PATH}"
2021-09-28 08:12:39 +08:00
GENERATOR Ninja
2016-10-23 22:45:01 +08:00
OPTIONS
2020-08-22 01:39:52 +08:00
-DINSTALL_CONFIG_FILE_PATH="${DOWNLOADS}/wt"
-DSHARED_LIBS=${SHARED_LIBS}
2020-08-22 01:39:52 +08:00
-DBOOST_DYNAMIC=${SHARED_LIBS}
2016-10-23 22:45:01 +08:00
-DBUILD_EXAMPLES=OFF
2020-08-22 01:39:52 +08:00
-DBUILD_TESTS=OFF
-DWTHTTP_CONFIGURATION=
-DCONFIGURATION=
2020-08-22 01:39:52 +08:00
-DCONNECTOR_HTTP=ON
-DENABLE_HARU=ON
-DHARU_DYNAMIC=${SHARED_LIBS}
2016-10-23 22:45:01 +08:00
-DENABLE_MYSQL=OFF
2020-08-22 01:39:52 +08:00
-DENABLE_FIREBIRD=OFF
2016-10-23 22:45:01 +08:00
-DENABLE_QT4=OFF
2020-08-22 01:39:52 +08:00
-DENABLE_QT5=OFF
-DENABLE_LIBWTTEST=ON
-DENABLE_OPENGL=ON
2020-08-22 01:39:52 +08:00
${FEATURE_OPTIONS}
${WT_PLATFORM_SPECIFIC_OPTIONS}
-DUSE_SYSTEM_SQLITE3=ON
-DCMAKE_INSTALL_DIR=share
2022-01-27 07:23:50 +08:00
# see https://redmine.webtoolkit.eu/issues/9646
-DWTHTTP_CONFIGURATION=
-DCONFIGURATION=
[wt] Update to 4.10.4 (#38063) Update `wt` to 4.10.4. * Remove outdated `0002-link-glew.patch` and replace outdated PR #33369. * Fix the following errors: ``` 1> [CMake] CMake Error at F:/vcpkg/scripts/buildsystems/vcpkg.cmake:859 (_find_package): 1> [CMake] Could not find a package configuration file provided by "wt" with any of 1> [CMake] the following names: 1> [CMake] 1> [CMake] wtConfig.cmake 1> [CMake] wt-config.cmake 1> [CMake] 1> [CMake] Add the installation prefix of "wt" to CMAKE_PREFIX_PATH or set "wt_DIR" to 1> [CMake] a directory containing one of the above files. If "wt" provides a separate 1> [CMake] development package or SDK, be sure it has been installed. 1> [CMake] Call Stack (most recent call first): 1> [CMake] CMakeUsage/CMakeLists.txt:17 (find_package) ``` - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [ ] ~The "supports" clause reflects platforms that may be fixed by this new version.~ - [ ] ~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file.~ - [x] Any patches that are no longer applied are deleted from the port's directory. - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file. All features are tested successfully in the following triplet: ``` x86-windows x64-windows x64-windows-static ``` The usage test passed on `x64-windows` (header files found): ``` wt provides CMake targets: # this is heuristically generated, and may not be correct find_package(wt CONFIG REQUIRED) target_link_libraries(main PRIVATE Wt::Wt Wt::HTTP Wt::Test Wt::Isapi) ``` --------- Co-authored-by: Monica <v-liumonica@microsoft.com>
2024-04-11 21:58:38 +08:00
"-DUSERLIB_PREFIX=${CURRENT_INSTALLED_DIR}"
MAYBE_UNUSED_VARIABLES
USE_SYSTEM_SQLITE3
2022-01-27 07:23:50 +08:00
2016-10-23 22:45:01 +08:00
)
2021-09-28 08:12:39 +08:00
vcpkg_cmake_install()
vcpkg_cmake_config_fixup()
2018-02-23 19:36:35 +08:00
2016-10-23 22:45:01 +08:00
# There is no way to suppress installation of the headers and resource files in debug build.
2022-01-27 07:23:50 +08:00
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/var" "${CURRENT_PACKAGES_DIR}/debug/var")
2016-10-23 22:45:01 +08:00
2022-01-27 07:23:50 +08:00
# RUNDIR is only used for wtfcgi what we don't build. See https://redmine.webtoolkit.eu/issues/9646
file(READ "${CURRENT_PACKAGES_DIR}/include/Wt/WConfig.h" W_CONFIG_H)
string(REGEX REPLACE "([\r\n])#define RUNDIR[^\r\n]+" "\\1// RUNDIR intentionally unset by vcpkg" W_CONFIG_H "${W_CONFIG_H}")
file(WRITE "${CURRENT_PACKAGES_DIR}/include/Wt/WConfig.h" "${W_CONFIG_H}")
[wt] Update to 4.10.4 (#38063) Update `wt` to 4.10.4. * Remove outdated `0002-link-glew.patch` and replace outdated PR #33369. * Fix the following errors: ``` 1> [CMake] CMake Error at F:/vcpkg/scripts/buildsystems/vcpkg.cmake:859 (_find_package): 1> [CMake] Could not find a package configuration file provided by "wt" with any of 1> [CMake] the following names: 1> [CMake] 1> [CMake] wtConfig.cmake 1> [CMake] wt-config.cmake 1> [CMake] 1> [CMake] Add the installation prefix of "wt" to CMAKE_PREFIX_PATH or set "wt_DIR" to 1> [CMake] a directory containing one of the above files. If "wt" provides a separate 1> [CMake] development package or SDK, be sure it has been installed. 1> [CMake] Call Stack (most recent call first): 1> [CMake] CMakeUsage/CMakeLists.txt:17 (find_package) ``` - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [ ] ~The "supports" clause reflects platforms that may be fixed by this new version.~ - [ ] ~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file.~ - [x] Any patches that are no longer applied are deleted from the port's directory. - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file. All features are tested successfully in the following triplet: ``` x86-windows x64-windows x64-windows-static ``` The usage test passed on `x64-windows` (header files found): ``` wt provides CMake targets: # this is heuristically generated, and may not be correct find_package(wt CONFIG REQUIRED) target_link_libraries(main PRIVATE Wt::Wt Wt::HTTP Wt::Test Wt::Isapi) ``` --------- Co-authored-by: Monica <v-liumonica@microsoft.com>
2024-04-11 21:58:38 +08:00
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
2016-10-23 22:45:01 +08:00
vcpkg_copy_pdbs()