Skip to content

Commit

Permalink
w2
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Mar 10, 2024
1 parent c21ee00 commit 5df555f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cache_vcpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
%VCPKG_ROOT%\bootstrap-vcpkg.bat
- name: Upload Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: base
path: ${{ env.VCPKG_ROOT }}
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
)
- name: Upload Vcpkg Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.zip-name }}
path: ./${{ matrix.zip-name }}.zip
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ option(DART_FAST_DEBUG "Add -O1 option for DEBUG mode build" OFF)
# See: https://medium.com/@alasher/colored-c-compiler-output-with-ninja-clang-gcc-10bfe7f2b949
option(DART_FORCE_COLORED_OUTPUT
"Always produce ANSI-colored output (GNU/Clang only)." OFF)
option(DART_DOWNLOAD_DEPENDENT_PACKAGES "Whether to download dependent package" ON)
option(DART_DOWNLOAD_BUILD_DEPS "Download build dependencies" ON)

#===============================================================================
# Print intro
Expand Down
2 changes: 1 addition & 1 deletion python/dartpy/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
# This file is provided under the "BSD-style" License

if(DART_DOWNLOAD_DEPENDENT_PACKAGES)
if(DART_DOWNLOAD_BUILD_DEPS)
include(FetchContent)
FetchContent_Declare(
pybind11
Expand Down

0 comments on commit 5df555f

Please sign in to comment.