early-access version 2853
This commit is contained in:
68
externals/vcpkg/ports/symengine/portfile.cmake
vendored
Executable file
68
externals/vcpkg/ports/symengine/portfile.cmake
vendored
Executable file
@@ -0,0 +1,68 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO symengine/symengine
|
||||
REF 7b1880824c2cce98787ae29a317682ba6c294484 #v0.9.0
|
||||
SHA512 745b2616b88032ff047a28e46b703bc1912d109524f8aa411a5b7a650a6d89d3f16dc92812381e95b13bc5cf61218d2ff3db9d3809443264340eae180968cbcf
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
vcpkg_check_features(
|
||||
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||
FEATURES
|
||||
arb WITH_ARB
|
||||
flint WITH_FLINT
|
||||
mpfr WITH_MPFR
|
||||
tcmalloc WITH_TCMALLOC
|
||||
)
|
||||
|
||||
if(integer-class-boostmp IN_LIST FEATURES)
|
||||
set(INTEGER_CLASS boostmp)
|
||||
|
||||
if(integer-class-flint IN_LIST FEATURES)
|
||||
message(WARNING "Both boostmp and flint are given for integer class, will use boostmp only.")
|
||||
endif()
|
||||
elseif(integer-class-flint IN_LIST FEATURES)
|
||||
set(INTEGER_CLASS flint)
|
||||
endif()
|
||||
|
||||
if(VCPKG_TARGET_IS_UWP)
|
||||
set(VCPKG_C_FLAGS "${VCPKG_C_FLAGS} -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE")
|
||||
set(VCPKG_CXX_FLAGS "${VCPKG_CXX_FLAGS} -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE")
|
||||
endif()
|
||||
|
||||
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" MSVC_USE_MT)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
SOURCE_PATH "${SOURCE_PATH}"
|
||||
OPTIONS
|
||||
-DINTEGER_CLASS=${INTEGER_CLASS}
|
||||
-DBUILD_BENCHMARKS=no
|
||||
-DBUILD_TESTS=no
|
||||
-DMSVC_WARNING_LEVEL=3
|
||||
-DMSVC_USE_MT=${MSVC_USE_MT}
|
||||
-DWITH_SYMENGINE_RCP=yes
|
||||
-DWITH_SYMENGINE_TEUCHOS=no
|
||||
-DINTEGER_CLASS=${INTEGER_CLASS}
|
||||
${FEATURE_OPTIONS}
|
||||
)
|
||||
|
||||
vcpkg_cmake_install()
|
||||
|
||||
if(EXISTS "${CURRENT_PACKAGES_DIR}/CMake")
|
||||
vcpkg_cmake_config_fixup(CONFIG_PATH CMake)
|
||||
elseif(EXISTS "${CURRENT_PACKAGES_DIR}/lib/cmake/${PORT}")
|
||||
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/${PORT})
|
||||
endif()
|
||||
|
||||
vcpkg_copy_pdbs()
|
||||
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
||||
file(REMOVE "${CURRENT_PACKAGES_DIR}/include/symengine/symengine_config_cling.h")
|
||||
|
||||
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/share/symengine/SymEngineConfig.cmake" "${CURRENT_BUILDTREES_DIR}" "") # not used, inside if (False)
|
||||
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/share/symengine/SymEngineConfig.cmake"
|
||||
[[${SYMENGINE_CMAKE_DIR}/../../../include]]
|
||||
[[${SYMENGINE_CMAKE_DIR}/../../include]]
|
||||
)
|
||||
|
||||
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
||||
61
externals/vcpkg/ports/symengine/vcpkg.json
vendored
Executable file
61
externals/vcpkg/ports/symengine/vcpkg.json
vendored
Executable file
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"name": "symengine",
|
||||
"version": "0.9.0",
|
||||
"description": "SymEngine is a fast symbolic manipulation library",
|
||||
"homepage": "https://github.com/symengine/symengine",
|
||||
"license": "BSD-3-Clause",
|
||||
"dependencies": [
|
||||
"boost-math",
|
||||
"boost-random",
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake-config",
|
||||
"host": true
|
||||
}
|
||||
],
|
||||
"default-features": [
|
||||
"integer-class-boostmp"
|
||||
],
|
||||
"features": {
|
||||
"arb": {
|
||||
"description": "Build with arb",
|
||||
"dependencies": [
|
||||
"arb"
|
||||
]
|
||||
},
|
||||
"flint": {
|
||||
"description": "Build with flint",
|
||||
"dependencies": [
|
||||
"flint"
|
||||
]
|
||||
},
|
||||
"integer-class-boostmp": {
|
||||
"description": "Use Boost.multiprecision integer class",
|
||||
"dependencies": [
|
||||
"boost-multiprecision"
|
||||
]
|
||||
},
|
||||
"integer-class-flint": {
|
||||
"description": "Use flint integer class",
|
||||
"dependencies": [
|
||||
"flint",
|
||||
"gmp"
|
||||
]
|
||||
},
|
||||
"mpfr": {
|
||||
"description": "Build with mpfr",
|
||||
"dependencies": [
|
||||
"mpfr"
|
||||
]
|
||||
},
|
||||
"tcmalloc": {
|
||||
"description": "Build with tcmalloc",
|
||||
"dependencies": [
|
||||
"gperftools"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user