diff options
| author | Marijn Tamis <[email protected]> | 2019-04-01 14:21:09 +0200 |
|---|---|---|
| committer | Marijn Tamis <[email protected]> | 2019-04-01 14:21:09 +0200 |
| commit | d243404d4ba88bcf53f7310cc8980b4efe38c19f (patch) | |
| tree | dcc8ce2904e9f813e03f71f825c4d3c9ec565d91 /PxShared/GenerateProjects.bat | |
| parent | Add new SetSpheres and SetPlanes api's to bring them in line with setTriangles. (diff) | |
| download | nvcloth-d243404d4ba88bcf53f7310cc8980b4efe38c19f.tar.xz nvcloth-d243404d4ba88bcf53f7310cc8980b4efe38c19f.zip | |
1.1.6 Release.1.1.6
Diffstat (limited to 'PxShared/GenerateProjects.bat')
| -rw-r--r-- | PxShared/GenerateProjects.bat | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/PxShared/GenerateProjects.bat b/PxShared/GenerateProjects.bat deleted file mode 100644 index 7924d3f..0000000 --- a/PxShared/GenerateProjects.bat +++ /dev/null @@ -1,49 +0,0 @@ -@echo off - -REM Make sure the various variables that we need are set - -IF NOT DEFINED GW_DEPS_ROOT GOTO GW_DEPS_ROOT_UNDEFINED - -IF NOT DEFINED BOOST_ROOT GOTO BOOST_ROOT_UNDEFINED - -IF NOT DEFINED CUDA_BIN_PATH GOTO CUDA_ROOT_UNDEFINED - -IF EXIST GW_DEPS_ROOT\CMakeModules ( - set CMAKE_MODULE_PATH=%GW_DEPS_ROOT%\CMakeModules -) ELSE ( - set CMAKE_MODULE_PATH=%GW_DEPS_ROOT%\sw\physx\tools\CMakeModules -) - -REM Generate projects here - -rmdir /s /q compiler\vc12win32-cmake\ -mkdir compiler\vc12win32-cmake\ -pushd compiler\vc12win32-cmake\ -cmake ..\cmake\windows -G "Visual Studio 12 2013" -AWin32 -DTARGET_BUILD_PLATFORM=windows -popd - -rmdir /s /q compiler\vc12win64-cmake\ -mkdir compiler\vc12win64-cmake\ -pushd compiler\vc12win64-cmake\ -cmake ..\cmake\windows -G "Visual Studio 12 2013" -Ax64 -DTARGET_BUILD_PLATFORM=windows -popd - -popd - -GOTO :End - -:GW_DEPS_ROOT_UNDEFINED -ECHO GW_DEPS_ROOT has to be defined, pointing to the root of the dependency tree. -PAUSE -GOTO END - -:BOOST_ROOT_UNDEFINED -ECHO BOOST_ROOT has to be defined, pointing to the root of your local Boost install. -PAUSE -GOTO END - -:CUDA_ROOT_UNDEFINED -ECHO CUDA_BIN_PATH has to be defined, pointing to the bin folder of your local CUDA install. -PAUSE - -:End |