-
Notifications
You must be signed in to change notification settings - Fork 398
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed dynamic plugins build; clang fixes; cleanup
- Loading branch information
Showing
15 changed files
with
191 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
@echo off | ||
|
||
REM This script downloads the PhysX source code from the official repository | ||
REM GENie automatically detects PhysX source code and uses it instead of the prebuilt version | ||
|
||
setlocal | ||
set dir_3rdparty_src="..\external\_repos\" | ||
|
||
pushd %~dp0 | ||
if not exist %dir_3rdparty_src% mkdir %dir_3rdparty_src% | ||
pushd %dir_3rdparty_src% | ||
if not exist physx ( | ||
git.exe clone --depth=1 https://github.com/nem0/PhysX.git physx | ||
) else ( | ||
cd physx | ||
git pull | ||
) | ||
popd | ||
popd |
Oops, something went wrong.