54 lines
2.1 KiB
CMake
Executable File
54 lines
2.1 KiB
CMake
Executable File
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO libMesh/libmesh
|
|
REF 21f623c837b3865ed65ec9608b357bdb1935d428 #1.5.0
|
|
SHA512 53ad41ed0cd99cb5096ff338a3ff5d8a8ecbfb17dc1d7ee0d2b0cbffecbede7f7c11b7c3c2233cec9dde0988c8828ba0199247effd3442befc72230e641a185e
|
|
HEAD_REF master
|
|
)
|
|
|
|
if(VCPKG_TARGET_IS_WINDOWS)
|
|
set(OPTIONS --disable-qhull )
|
|
endif()
|
|
# There a lot of configure options in this port which are not yet correctly handled by VCPKG
|
|
# To only mention two:
|
|
# --enable-vtk-required Error if VTK is not detected by configure
|
|
# --enable-capnp-required Error if Cap'n Proto support is not detected by
|
|
# but there are a lot more which need to be checked/fixed
|
|
# So this port can only be considered a Work In Progress
|
|
vcpkg_configure_make(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
OPTIONS ${OPTIONS}
|
|
OPTIONS_DEBUG --with-methods=dbg
|
|
OPTIONS_RELEASE --with-methods=opt
|
|
)
|
|
|
|
vcpkg_install_make()
|
|
|
|
if (EXISTS ${CURRENT_PACKAGES_DIR}/contrib/bin/libtool)
|
|
file(COPY ${CURRENT_PACKAGES_DIR}/contrib/bin/libtool DESTINATION ${CURRENT_PACKAGES_DIR}/tools/${PORT})
|
|
file(REMOVE ${CURRENT_PACKAGES_DIR}/contrib/bin/libtool)
|
|
endif()
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/contrib)
|
|
|
|
file(GLOB LIBMESH_EXAMPLES ${CURRENT_PACKAGES_DIR}/examples/*)
|
|
foreach (LIBMESH_EXAMPLE ${LIBMESH_EXAMPLES})
|
|
file(COPY ${LIBMESH_EXAMPLE} DESTINATION ${CURRENT_PACKAGES_DIR}/tools/${PORT})
|
|
endforeach()
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/examples)
|
|
|
|
if (VCPKG_LIBRARY_LINKAGE STREQUAL static)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin)
|
|
endif()
|
|
|
|
# Remove tools and debug include directories
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/contrib ${CURRENT_PACKAGES_DIR}/debug/etc
|
|
${CURRENT_PACKAGES_DIR}/debug/examples ${CURRENT_PACKAGES_DIR}/debug/include
|
|
${CURRENT_PACKAGES_DIR}/debug/share ${CURRENT_PACKAGES_DIR}/tools/libmesh/debug
|
|
${CURRENT_PACKAGES_DIR}/Make.common ${CURRENT_PACKAGES_DIR}/debug/Make.common)
|
|
|
|
vcpkg_copy_pdbs()
|
|
vcpkg_fixup_pkgconfig()
|
|
|
|
file(INSTALL ${CURRENT_PORT_DIR}/copyright DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
|
|
|