Skip to content

Commit

Permalink
[simbody] new port (#20565)
Browse files Browse the repository at this point in the history
* Add simbody port

* Use newer vcpkg functions

* Fix cmake config path for unix

* Use patch file instead

* Fix tools path for unix

* Hard-code tools path

* Add freeglut dep

* Link to GLUT::GLUT

* Don't build visualization

* Fix static

* Fix static

* Update versions

* Fail for uwp

* Update baseline

* Apply suggestions from code review

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Add !uwp to vcpkg.json

* Fix static

* Test simbody PR on CI

* Try new ref

* Fix hash

* Fix osx

* Fix

* Update ref after upstream merge

* Update ports/simbody/portfile.cmake

Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>

* Update version

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: LilyWangLL <94091114+LilyWangLL@users.noreply.github.com>
  • Loading branch information
3 people committed Jan 6, 2022
1 parent e0ac445 commit 4bd3a11
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 0 deletions.
37 changes: 37 additions & 0 deletions ports/simbody/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO simbody/simbody
REF 040562785acd4b6d9d26ea6762d5c80075e0c474
SHA512 b803ed45fbaa60c5af601ac2d0be2a109eae19428d72ab06952403e12116ee08592014d85accad8e6a64aed6bb0afbd6f9dff6588c4b22da65fd1bac067f8662
HEAD_REF master
)

string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" BUILD_STATIC_LIBRARIES)
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" BUILD_DYNAMIC_LIBRARIES)

vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DBUILD_DYNAMIC_LIBRARIES=${BUILD_DYNAMIC_LIBRARIES}
-DBUILD_STATIC_LIBRARIES=${BUILD_STATIC_LIBRARIES}
-DWINDOWS_USE_EXTERNAL_LIBS=ON
-DINSTALL_DOCS=OFF
-DBUILD_VISUALIZER=OFF
-DBUILD_EXAMPLES=OFF
-DBUILD_TESTING=OFF
)

vcpkg_cmake_install()

if(WIN32)
vcpkg_cmake_config_fixup(CONFIG_PATH cmake)
else()
vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/${PORT}")
endif()

file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")

# Handle copyright
file(INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
19 changes: 19 additions & 0 deletions ports/simbody/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "simbody",
"version-date": "2022-01-04",
"description": "High-performance C++ multibody dynamics/physics library for simulating articulated biomechanical and mechanical systems like vehicles, robots, and the human skeleton.",
"homepage": "https://simtk.org/home/simbody",
"supports": "!uwp",
"dependencies": [
"blas",
"lapack",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
]
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -6348,6 +6348,10 @@
"baseline": "1.8.1",
"port-version": 3
},
"simbody": {
"baseline": "2022-01-04",
"port-version": 0
},
"simde": {
"baseline": "0.7.2",
"port-version": 0
Expand Down
9 changes: 9 additions & 0 deletions versions/s-/simbody.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "9474ba4a8027fb4f8e3e160decc4fa9f443a16e9",
"version-date": "2022-01-04",
"port-version": 0
}
]
}

0 comments on commit 4bd3a11

Please sign in to comment.