Skip to content

Commit 9e88315

Browse files
committed
Fix standalone Windows build issues
1 parent 10e8f85 commit 9e88315

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build_standalone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
sudo apt-get install -y build-essential cmake
3838
sudo apt-get install -y python3 python3-pip
3939
sudo pip3 install requests
40-
- name: Install Maya
40+
- name: Install USD
4141
run: |
4242
repo_root=$(cd .; pwd)
4343
sudo --preserve-env python3 .github/scripts/standalone.py --install --install_standalone_product_name ${{ matrix.usd_product_name }} --install_standalone_product_version ${{ matrix.usd_product_version }} --install_directory $repo_root/dependency

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ if("$ENV{AR_DCC_NAME}" STREQUAL "STANDALONE")
8787
# Python
8888
if (WIN32)
8989
if(EXISTS "${AR_USD_STANDALONE_ROOT}/python/python311.dll")
90-
set(AR_PYTHON_LIB python3.11)
90+
set(AR_PYTHON_LIB python311)
9191
set(AR_PYTHON_LIB_NUMBER python311)
9292
elseif(EXISTS "${AR_USD_STANDALONE_ROOT}/python/python310.dll")
93-
set(AR_PYTHON_LIB python3.10)
93+
set(AR_PYTHON_LIB python310)
9494
set(AR_PYTHON_LIB_NUMBER python310)
9595
else()
9696
message(FATAL_ERROR "Failed to find a compatible Python version.")

0 commit comments

Comments
 (0)