2019-04-25 05:13:04 +08:00
|
|
|
vcpkg_from_github(
|
2019-03-06 04:03:17 +08:00
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
2019-04-25 05:13:04 +08:00
|
|
|
REPO texus/TGUI
|
2020-10-14 04:17:32 +08:00
|
|
|
REF 6576c04e594ae0b76ff5e188d543a7558882ad6c # v0.8.8
|
|
|
|
SHA512 52d044e90fde0eb6c46c3af3e11a6c8641cce301e863858701aaa909b945c76a1dade2f96a2176a223d92c51f84fe8a6dd883ec74873e8d2fcf09dac50869891
|
2019-04-25 05:13:04 +08:00
|
|
|
HEAD_REF 0.8
|
2019-03-06 04:03:17 +08:00
|
|
|
)
|
|
|
|
|
2019-03-09 09:51:27 +08:00
|
|
|
set(TGUI_SHARE_PATH ${CURRENT_PACKAGES_DIR}/share/tgui)
|
|
|
|
set(TGUI_TOOLS_PATH ${CURRENT_PACKAGES_DIR}/tools/tgui)
|
|
|
|
|
2019-03-07 02:12:58 +08:00
|
|
|
# Enable static build
|
2019-03-09 09:51:27 +08:00
|
|
|
file(REMOVE "${SOURCE_PATH}/cmake/Modules/FindSFML.cmake")
|
2020-02-04 06:22:52 +08:00
|
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" TGUI_SHARED_LIBS)
|
2019-03-09 09:51:27 +08:00
|
|
|
|
|
|
|
# gui-builder
|
|
|
|
set(BUILD_GUI_BUILDER OFF)
|
|
|
|
if("tool" IN_LIST FEATURES)
|
|
|
|
set(BUILD_GUI_BUILDER ON)
|
|
|
|
endif()
|
2019-03-07 02:12:58 +08:00
|
|
|
|
2019-03-06 04:03:17 +08:00
|
|
|
vcpkg_configure_cmake(
|
2019-03-09 09:51:27 +08:00
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
2020-02-04 06:22:52 +08:00
|
|
|
DISABLE_PARALLEL_CONFIGURE
|
2019-03-09 09:51:27 +08:00
|
|
|
PREFER_NINJA
|
2019-03-06 04:03:17 +08:00
|
|
|
OPTIONS
|
2019-03-09 09:51:27 +08:00
|
|
|
-DTGUI_BUILD_GUI_BUILDER=${BUILD_GUI_BUILDER}
|
|
|
|
-DTGUI_MISC_INSTALL_PREFIX=${TGUI_SHARE_PATH}
|
2019-03-07 02:12:58 +08:00
|
|
|
-DTGUI_SHARED_LIBS=${TGUI_SHARED_LIBS}
|
2019-03-06 04:03:17 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/TGUI)
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
2019-03-09 09:51:27 +08:00
|
|
|
if(BUILD_GUI_BUILDER)
|
|
|
|
set(EXECUTABLE_SUFFIX "")
|
[openexr,openimageio,suitesparse,theia] updates for non-win32 (#6371)
* [openexr,openimageio,suitesparse,theia] updates for non-win32
* [theia] use only valid cmake symbols
* [suitesparse] Fix build
* [lapack] still not properly integrating with other ports
* [lapack] intercept cmake module calls and substitute them with our defs
* [suitesparse,clapack] fixes for proper integration
* [ceres,clapack] bump CONTROL
* [suitesparse] remove unnecessary defs
* [clapack] improve wrapper logic
* [WIN32] remove wrong symbol
* [clapack] fix wrapper integration
* [Accelerate] use best framework when available
* [clapack] separate config from wrapper
* [clapack] fix paths and filenames
* [mlpack,armadillo,clapack] improve library handling
* [mlpack] remove unnecessary cmake option
* [clp,coinutils,osi,liblemon] dependencies of openmvg, improve compatibility with non-win32
* [openmvg] fix for case-sensitive filesystems
* [clp,coinutils,osi] simplify CMakeLists removing many unnecessary steps
* [sophus] Force rebuild
* [theia] fixes for linux, part1
* [io2d] remove broken sintax
* [fontconfig] bump version to remove CI cached failure
* [theia] fixes for linux, part2
* [theia] remove unnecessary empty folders and comments from portfile
* [theia] use correct build type removing forced vars in cmakelists.txt
* [openmvg] add missing suitesparse target detection
* [sophus] fix Suitesparse dependency
* [sophus,openmvg] use suitesparse lowercase for module compatibility on case-sensitive filesystems
* [suitesparse] fixes for case-sensitive filesystems
* [openmvg] use correct Eigen3 name for case-sensitive filesystems
* [sophus] trigger rebuild
* [shogun] use modern vcpkg style
* [shogun] add missing cmake system processor symbol
2019-06-01 06:48:17 +08:00
|
|
|
if (NOT VCPKG_CMAKE_SYSTEM_NAME OR VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
2019-03-09 09:51:27 +08:00
|
|
|
set(EXECUTABLE_SUFFIX ".exe")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
message(STATUS "Check for: ${TGUI_SHARE_PATH}/gui-builder/gui-builder${EXECUTABLE_SUFFIX}")
|
|
|
|
if(EXISTS "${TGUI_SHARE_PATH}/gui-builder/gui-builder${EXECUTABLE_SUFFIX}")
|
|
|
|
file(MAKE_DIRECTORY "${TGUI_TOOLS_PATH}")
|
[openexr,openimageio,suitesparse,theia] updates for non-win32 (#6371)
* [openexr,openimageio,suitesparse,theia] updates for non-win32
* [theia] use only valid cmake symbols
* [suitesparse] Fix build
* [lapack] still not properly integrating with other ports
* [lapack] intercept cmake module calls and substitute them with our defs
* [suitesparse,clapack] fixes for proper integration
* [ceres,clapack] bump CONTROL
* [suitesparse] remove unnecessary defs
* [clapack] improve wrapper logic
* [WIN32] remove wrong symbol
* [clapack] fix wrapper integration
* [Accelerate] use best framework when available
* [clapack] separate config from wrapper
* [clapack] fix paths and filenames
* [mlpack,armadillo,clapack] improve library handling
* [mlpack] remove unnecessary cmake option
* [clp,coinutils,osi,liblemon] dependencies of openmvg, improve compatibility with non-win32
* [openmvg] fix for case-sensitive filesystems
* [clp,coinutils,osi] simplify CMakeLists removing many unnecessary steps
* [sophus] Force rebuild
* [theia] fixes for linux, part1
* [io2d] remove broken sintax
* [fontconfig] bump version to remove CI cached failure
* [theia] fixes for linux, part2
* [theia] remove unnecessary empty folders and comments from portfile
* [theia] use correct build type removing forced vars in cmakelists.txt
* [openmvg] add missing suitesparse target detection
* [sophus] fix Suitesparse dependency
* [sophus,openmvg] use suitesparse lowercase for module compatibility on case-sensitive filesystems
* [suitesparse] fixes for case-sensitive filesystems
* [openmvg] use correct Eigen3 name for case-sensitive filesystems
* [sophus] trigger rebuild
* [shogun] use modern vcpkg style
* [shogun] add missing cmake system processor symbol
2019-06-01 06:48:17 +08:00
|
|
|
file(RENAME
|
|
|
|
"${TGUI_SHARE_PATH}/gui-builder/gui-builder${EXECUTABLE_SUFFIX}"
|
2019-03-09 09:51:27 +08:00
|
|
|
"${TGUI_TOOLS_PATH}/gui-builder${EXECUTABLE_SUFFIX}")
|
|
|
|
# Need to copy `resources` and `themes` directories
|
|
|
|
file(COPY "${TGUI_SHARE_PATH}/gui-builder/resources" DESTINATION "${TGUI_TOOLS_PATH}")
|
|
|
|
file(COPY "${TGUI_SHARE_PATH}/gui-builder/themes" DESTINATION "${TGUI_TOOLS_PATH}")
|
|
|
|
file(REMOVE_RECURSE "${TGUI_SHARE_PATH}/gui-builder")
|
|
|
|
vcpkg_copy_tool_dependencies("${TGUI_TOOLS_PATH}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2019-11-04 12:12:18 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/debug/share)
|
2019-04-25 05:13:04 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/include/TGUI/nanosvg")
|
2019-03-06 04:03:17 +08:00
|
|
|
|
|
|
|
# Handle copyright
|
2019-11-04 12:12:18 +08:00
|
|
|
file(INSTALL "${SOURCE_PATH}/license.txt" DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|