Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,6 @@ jobs:
run: echo "##[set-output name=branch;]${GITHUB_REF#refs/heads/}"
id: extract_branch

- name: Upgrade pip
run: |
python -m pip install --upgrade pip

- name: Build on Unix
if: runner.os != 'Windows'
env:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci/build.cmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
:: Set the correct Python PATH
set PATH=%HUNTER_PYTHON_LOCATION%;%PATH%

:: Install Python package 'requests'
pip install requests gitpython
python -m pip install --upgrade pip
python -m pip install requests gitpython

:: Install latest Polly toolchains and scripts
C:\msys64\usr\bin\wget.exe https://github.com/cpp-pm/polly/archive/master.zip
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci/build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Set the correct Python PATH
export PATH="${HUNTER_PYTHON_LOCATION}:${PATH}"

# Install Python package 'requests'
pip install requests gitpython
python -m pip install --upgrade pip
python -m pip install requests gitpython

# Install latest Polly toolchains and scripts
wget https://github.com/cpp-pm/polly/archive/master.zip
Expand Down
10 changes: 10 additions & 0 deletions cmake/projects/draco/hunter.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

include(hunter_add_version)
include(hunter_cacheable)
include(hunter_cmake_args)
include(hunter_download)
include(hunter_pick_scheme)

Expand All @@ -30,6 +31,15 @@ hunter_add_version(
1c37aba7278d7b8c729a98cc429d867626fa085c
)

hunter_cmake_args(
draco
CMAKE_ARGS
DRACO_GLTF=ON
DRACO_UNITY_PLUGIN=OFF
DRACO_MAYA_PLUGIN=OFF
DRACO_TESTS=OFF
)

hunter_pick_scheme(DEFAULT url_sha1_cmake)
hunter_cacheable(draco)
hunter_download(PACKAGE_NAME draco)