mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 02:19:00 +08:00
[Openturns] burn in linkage and fix deps (#37234)
This commit is contained in:
parent
919fd8daa7
commit
accfd3219e
23
ports/openturns/fix-dep.patch
Normal file
23
ports/openturns/fix-dep.patch
Normal file
@ -0,0 +1,23 @@
|
||||
diff --git a/lib/OpenTURNSConfig.cmake.in b/lib/OpenTURNSConfig.cmake.in
|
||||
index 1247591893..c12e423892 100644
|
||||
--- a/lib/OpenTURNSConfig.cmake.in
|
||||
+++ b/lib/OpenTURNSConfig.cmake.in
|
||||
@@ -74,6 +74,17 @@ if ("1" STREQUAL "@HMAT_FOUND@")
|
||||
find_package (HMAT REQUIRED NO_MODULE PATHS ${HMAT_DIR} NO_DEFAULT_PATH)
|
||||
endif ()
|
||||
|
||||
+include(CMakeFindDependencyMacro)
|
||||
+find_dependency(Eigen3 CONFIG)
|
||||
+find_dependency(TBB CONFIG)
|
||||
+find_dependency(Spectra)
|
||||
+find_dependency(NLopt)
|
||||
+find_dependency(dlib)
|
||||
+find_dependency(HDF5)
|
||||
+find_dependency(Ceres CONFIG)
|
||||
+find_dependency(Pagmo CONFIG)
|
||||
+find_dependency(CMinpack CONFIG)
|
||||
+
|
||||
# Our library dependencies (contains definitions for IMPORTED targets)
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/OpenTURNS-Targets.cmake")
|
||||
|
||||
|
@ -7,6 +7,7 @@ vcpkg_from_github(
|
||||
PATCHES
|
||||
link-gmp.patch
|
||||
reorder-mpc.patch
|
||||
fix-dep.patch
|
||||
)
|
||||
|
||||
vcpkg_find_acquire_program(FLEX)
|
||||
@ -51,6 +52,11 @@ vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/${PORT}")
|
||||
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/share/${PORT}/OpenTURNSConfig.cmake" "/lib/cmake/" "/share/")
|
||||
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/share/${PORT}/OpenTURNSConfig.cmake" "/lib" "$<$<CONFIG:DEBUG>:/debug>/lib")
|
||||
|
||||
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
||||
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/openturns/OTdebug.h" "#ifndef OT_STATIC" "#if 0")
|
||||
else()
|
||||
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/openturns/OTdebug.h" "#ifndef OT_STATIC" "#if 1")
|
||||
endif()
|
||||
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "openturns",
|
||||
"version": "1.20",
|
||||
"port-version": 1,
|
||||
"port-version": 2,
|
||||
"description": "OpenTURNS is a scientific C++ and Python library featuring an internal data model and algorithms dedicated to the treatment of uncertainties.",
|
||||
"homepage": "http://www.openturns.org",
|
||||
"license": null,
|
||||
|
@ -6494,7 +6494,7 @@
|
||||
},
|
||||
"openturns": {
|
||||
"baseline": "1.20",
|
||||
"port-version": 1
|
||||
"port-version": 2
|
||||
},
|
||||
"openvdb": {
|
||||
"baseline": "11.0.0",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "55e0a233063acabd3fe365687fda3f99d6e79f4c",
|
||||
"version": "1.20",
|
||||
"port-version": 2
|
||||
},
|
||||
{
|
||||
"git-tree": "1533ede792f48bee5c53f35de06c493e6ed0ab0a",
|
||||
"version": "1.20",
|
||||
|
Loading…
Reference in New Issue
Block a user