-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Eugene Golushkov
committed
Dec 19, 2024
1 parent
67f9fdd
commit 96b3046
Showing
5 changed files
with
77 additions
and
4 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
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 |
---|---|---|
|
@@ -81,6 +81,7 @@ def getGitBranchName(): | |
platforms = \ | ||
[ | ||
'Win32', | ||
'ARM64', | ||
'x64' | ||
] | ||
|
||
|
71 changes: 71 additions & 0 deletions
71
Scripts/BuildScripts/output/build_ogre_Visual_Studio_17_2022_ARM64.bat
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,71 @@ | ||
|
||
@echo off | ||
SETLOCAL | ||
|
||
set OGRE_BRANCH_NAME=master | ||
set GENERATOR="Visual Studio 17 2022" | ||
set PLATFORM=ARM64 | ||
|
||
set CMAKE_BIN_x86="C:\Program Files (x86)\CMake\bin\cmake.exe" | ||
set CMAKE_BIN_x64="C:\Program Files\CMake\bin\cmake.exe" | ||
IF EXIST %CMAKE_BIN_x64% ( | ||
echo CMake 64-bit detected | ||
set CMAKE_BIN=%CMAKE_BIN_x64% | ||
) ELSE ( | ||
IF EXIST %CMAKE_BIN_x86% ( | ||
echo CMake 32-bit detected | ||
set CMAKE_BIN=%CMAKE_BIN_x86% | ||
) ELSE ( | ||
echo Cannot detect either %CMAKE_BIN_x86% or | ||
echo %CMAKE_BIN_x64% make sure CMake is installed | ||
EXIT /B 1 | ||
) | ||
) | ||
echo Using CMake at %CMAKE_BIN% | ||
|
||
mkdir Ogre | ||
cd Ogre | ||
IF NOT EXIST ogre-next-deps ( | ||
mkdir ogre-next-deps | ||
echo --- Cloning ogre-next-deps --- | ||
git clone --recurse-submodules --shallow-submodules https://github.com/OGRECave/ogre-next-deps | ||
) ELSE ( | ||
echo --- ogre-next-deps repo detected. Cloning skipped --- | ||
) | ||
cd ogre-next-deps | ||
mkdir build | ||
cd build | ||
echo --- Building ogre-next-deps --- | ||
%CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. | ||
%CMAKE_BIN% --build . --config Debug | ||
%CMAKE_BIN% --build . --target install --config Debug | ||
%CMAKE_BIN% --build . --config Release | ||
%CMAKE_BIN% --build . --target install --config Release | ||
|
||
cd ../../ | ||
IF NOT EXIST ogre-next ( | ||
echo --- Cloning Ogre master --- | ||
git clone --branch %OGRE_BRANCH_NAME% https://github.com/OGRECave/ogre-next | ||
) | ||
cd ogre-next | ||
IF NOT EXIST Dependencies ( | ||
mklink /D Dependencies ..\ogre-next-deps\build\ogredeps | ||
IF ERRORLEVEL 1 ( | ||
echo Failed to create Dependency directory symlink. Run the script as Administrator. | ||
EXIT /B 1 | ||
) | ||
) | ||
mkdir build | ||
cd build | ||
echo --- Running CMake configure --- | ||
%CMAKE_BIN% -D OGRE_CONFIG_THREAD_PROVIDER=0 -D OGRE_CONFIG_THREADS=0 -D OGRE_BUILD_COMPONENT_SCENE_FORMAT=1 -D OGRE_BUILD_SAMPLES2=1 -D OGRE_BUILD_TESTS=1 -D OGRE_DEPENDENCIES_DIR=..\..\ogre-next-deps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. | ||
echo --- Building Ogre (Debug) --- | ||
%CMAKE_BIN% --build . --config Debug | ||
%CMAKE_BIN% --build . --target install --config Debug | ||
echo --- Building Ogre (Release) --- | ||
%CMAKE_BIN% --build . --config Release | ||
%CMAKE_BIN% --build . --target install --config Release | ||
|
||
echo Done! | ||
|
||
ENDLOCAL |