Skip to content

Commit

Permalink
[profile] Add tracy dependency
Browse files Browse the repository at this point in the history
w
  • Loading branch information
jslee02 committed Mar 24, 2024
1 parent 383140b commit 053a7cb
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 2 deletions.
17 changes: 16 additions & 1 deletion .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,22 @@ jobs:
- uses: johnwason/vcpkg-action@v6
with:
# TODO: Add ode and coin-or-ipopt
pkgs: assimp eigen3 fcl fmt spdlog bullet3 freeglut glfw3 nlopt opengl osg pagmo2 tinyxml2 urdfdom
pkgs: >
assimp
eigen3
fcl
fmt
spdlog
bullet3
freeglut
glfw3
nlopt
opengl
osg
pagmo2
tinyxml2
tracy
urdfdom
triplet: x64-windows
revision: "2024.02.14"
github-binarycache: true
Expand Down
20 changes: 19 additions & 1 deletion .github/workflows/publish_dartpy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,25 @@ jobs:
if: ${{ matrix.os == 'windows-latest' && (matrix.release_only == false || github.ref == 'refs/heads/main') }}
uses: johnwason/vcpkg-action@v6
with:
pkgs: assimp ccd eigen3 fcl fmt spdlog bullet3 coin-or-ipopt freeglut glfw3 imgui nlopt ode opengl osg pagmo2 tinyxml2 urdfdom
pkgs: >
assimp
ccd
eigen3
fcl
fmt
spdlog
bullet3
coin-or-ipopt
freeglut
glfw3
imgui
nlopt
ode
opengl
osg
pagmo2
tinyxml2
urdfdom
triplet: x64-windows
revision: "2024.02.14"
github-binarycache: true
Expand Down
1 change: 1 addition & 0 deletions Brewfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Build dependencies
brew 'cmake'
brew 'pkg-config'
brew 'tracy'

brew 'assimp'
brew 'bullet'
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ dart_option(DART_ENABLE_SIMD
"Build DART with all SIMD instructions on the current local machine" OFF)
dart_option(DART_BUILD_GUI_OSG "Build osgDart library" ON)
dart_option(DART_BUILD_DARTPY "Build dartpy" ON)
dart_option(DART_BUILD_PROFILE "Build DART with profiling options" OFF)
dart_option(DART_CODECOV "Turn on codecov support" OFF)
dart_option(DART_FAST_DEBUG "Add -O1 option for DEBUG mode build" OFF)
# GCC and Clang add ANSI-formatted colors when they detect the output medium is a
Expand Down

0 comments on commit 053a7cb

Please sign in to comment.