From d3002169e41b34f811abfbb3f5f797ce0a8844b1 Mon Sep 17 00:00:00 2001 From: "Matias N. Goldberg" Date: Sun, 26 Apr 2020 23:13:57 -0300 Subject: [PATCH] Updated build scripts to point ogre-next-deps git repo instead of bitbucket's Updated docs to point to Github instead of Bitbucket --- Docs/src/SettingUpOgre/SettingUpOgreLinux.md | 2 +- .../src/SettingUpOgre/SettingUpOgreWindows.md | 22 ++++--------------- Scripts/BuildScripts/build_ogre.bat | 18 +++++++-------- Scripts/BuildScripts/build_ogre_linux.sh | 16 +++++++------- ...build_ogre_Visual_Studio_10_2010_Win32.bat | 18 +++++++-------- .../build_ogre_Visual_Studio_10_2010_x64.bat | 18 +++++++-------- ...build_ogre_Visual_Studio_11_2012_Win32.bat | 18 +++++++-------- .../build_ogre_Visual_Studio_11_2012_x64.bat | 18 +++++++-------- ...build_ogre_Visual_Studio_12_2013_Win32.bat | 18 +++++++-------- .../build_ogre_Visual_Studio_12_2013_x64.bat | 18 +++++++-------- ...build_ogre_Visual_Studio_14_2015_Win32.bat | 18 +++++++-------- .../build_ogre_Visual_Studio_14_2015_x64.bat | 18 +++++++-------- ...build_ogre_Visual_Studio_15_2017_Win32.bat | 18 +++++++-------- .../build_ogre_Visual_Studio_15_2017_x64.bat | 18 +++++++-------- ...build_ogre_Visual_Studio_16_2019_Win32.bat | 18 +++++++-------- .../build_ogre_Visual_Studio_16_2019_x64.bat | 18 +++++++-------- .../build_ogre_Visual_Studio_9_2008_Win32.bat | 18 +++++++-------- .../build_ogre_Visual_Studio_9_2008_x64.bat | 18 +++++++-------- .../output/build_ogre_linux_c++11.sh | 16 +++++++------- .../output/build_ogre_linux_c++98.sh | 16 +++++++------- .../output/build_ogre_linux_c++latest.sh | 16 +++++++------- 21 files changed, 172 insertions(+), 186 deletions(-) diff --git a/Docs/src/SettingUpOgre/SettingUpOgreLinux.md b/Docs/src/SettingUpOgre/SettingUpOgreLinux.md index 4e1c22818be..181dcdf696a 100644 --- a/Docs/src/SettingUpOgre/SettingUpOgreLinux.md +++ b/Docs/src/SettingUpOgre/SettingUpOgreLinux.md @@ -4,7 +4,7 @@ # Requirements {#RequirementsLinux} * [CMake 3.x](https://cmake.org/download/) - * Mercurial. We recommend [TortoiseHg](https://tortoisehg.bitbucket.io/download/index.html) + * Git * What you do **NOT** need: Boost. Don't waste your time. * Clang >3.5 or GCC >4.0 * [QtCreator](https://download.qt.io/official_releases/qtcreator/) recommended (Optional). diff --git a/Docs/src/SettingUpOgre/SettingUpOgreWindows.md b/Docs/src/SettingUpOgre/SettingUpOgreWindows.md index 824038db006..179fda2ec75 100644 --- a/Docs/src/SettingUpOgre/SettingUpOgreWindows.md +++ b/Docs/src/SettingUpOgre/SettingUpOgreWindows.md @@ -4,7 +4,7 @@ # Requirements {#RequirementsWindows} * [CMake 3.x](https://cmake.org/download/) - * Mercurial. We recommend [TortoiseHg](https://tortoisehg.bitbucket.io/download/index.html) + * Git * What you do **NOT** need: Boost. Don't waste your time. * Visual Studio 2008 SP1 - 2017 (2019 not tested). MinGW may work but we strongly recommend Visual Studio. * [DirectX June 2010 SDK](https://www.microsoft.com/en-us/download/details.aspx?id=6812). Optional. @@ -82,7 +82,7 @@ Don't worry, those CMake configs are about the *old threading* model. For more i We easy-to-use scripts that will download and setup all dependencies for you in a self-contained folder Download build_ogre_scripts for the branch you need from: -https://bitbucket.org/sinbad/ogre/downloads/ +https://www.ogre3d.org/download/sdk/sdk-ogre-next @} @@ -95,23 +95,9 @@ Most dependencies are conveniently stored in its own repository called "ogredeps **Command line**: ```sh -mkdir Ogre -hg clone https://bitbucket.org/sinbad/ogre -r v2-1 -cd Ogre -hg clone https://bitbucket.org/cabalistic/ogredeps Dependencies +git clone --recurse-submodules --shallow-submodules https://github.com/OGRECave/ogre-next-deps +git clone --branch v2-1 https://github.com/OGRECave/ogre-next ``` - -**Graphical** - -Clone *Ogre*: -![](images/CloneOgre.png) - -Now clone the *ogredeps* repository: -![](images/CloneOgreDeps.png) - -Make sure Ogre is in the 2.1 branch: -![](images/BranchCheckout.png) -*Note:* If the branch filter doesn't appear, hit Ctrl+S @} @} diff --git a/Scripts/BuildScripts/build_ogre.bat b/Scripts/BuildScripts/build_ogre.bat index f9219399dcc..69c953454da 100755 --- a/Scripts/BuildScripts/build_ogre.bat +++ b/Scripts/BuildScripts/build_ogre.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/build_ogre_linux.sh b/Scripts/BuildScripts/build_ogre_linux.sh index efb4fadedfa..eacd3efa118 100755 --- a/Scripts/BuildScripts/build_ogre_linux.sh +++ b/Scripts/BuildScripts/build_ogre_linux.sh @@ -4,17 +4,17 @@ OGRE_BRANCH_NAME="{0}" mkdir Ogre cd Ogre -if test ! -f ogredeps; then - mkdir ogredeps - echo "--- Cloning Ogredeps ---" - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +if test ! -f ogre-next-deps; then + mkdir ogre-next-deps + echo "--- Cloning ogre-next-deps ---" + git clone --recurse-submodules --shallow-submodules https://github.com/OGRECave/ogre-next-deps else - echo "--- Ogredeps repo detected. Cloning skipped ---" + echo "--- ogre-next-deps repo detected. Cloning skipped ---" fi -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo "--- Building Ogredeps ---" +echo "--- Building ogre-next-deps ---" cmake {1} -G Ninja .. ninja ninja install @@ -27,7 +27,7 @@ if test ! -f ogre-next; then fi cd ogre-next if test ! -f Dependencies; then - ln -s ../ogredeps/build/ogredeps Dependencies + ln -s ../ogre-next-deps/build/ogredeps Dependencies fi mkdir -p build/Debug mkdir -p build/Release diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_10_2010_Win32.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_10_2010_Win32.bat index 6fab27a2535..b6c04bbc3f5 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_10_2010_Win32.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_10_2010_Win32.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_10_2010_x64.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_10_2010_x64.bat index 183163b838e..e0b37561b4c 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_10_2010_x64.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_10_2010_x64.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_11_2012_Win32.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_11_2012_Win32.bat index 18d5d50b9dc..e04c1eb254f 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_11_2012_Win32.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_11_2012_Win32.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_11_2012_x64.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_11_2012_x64.bat index e498c588bb8..0140b5477be 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_11_2012_x64.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_11_2012_x64.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_12_2013_Win32.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_12_2013_Win32.bat index 10519ea6525..a2e70d55d5d 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_12_2013_Win32.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_12_2013_Win32.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_12_2013_x64.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_12_2013_x64.bat index afa8ebd2398..abb24a45ef7 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_12_2013_x64.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_12_2013_x64.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_14_2015_Win32.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_14_2015_Win32.bat index 8852e5c512a..b2fdc1d89db 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_14_2015_Win32.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_14_2015_Win32.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_14_2015_x64.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_14_2015_x64.bat index 48e390b5771..0f60bca5f7b 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_14_2015_x64.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_14_2015_x64.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_15_2017_Win32.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_15_2017_Win32.bat index b5c0d48fbfb..90fbcc3edd6 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_15_2017_Win32.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_15_2017_Win32.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_15_2017_x64.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_15_2017_x64.bat index 4595f1dfce0..fdc375d08e6 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_15_2017_x64.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_15_2017_x64.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_16_2019_Win32.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_16_2019_Win32.bat index 1fb4259aa95..a40aa1e0e3e 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_16_2019_Win32.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_16_2019_Win32.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_16_2019_x64.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_16_2019_x64.bat index 2dfdf7352dd..abe32c46239 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_16_2019_x64.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_16_2019_x64.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_9_2008_Win32.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_9_2008_Win32.bat index c3629715f9c..e76be2623da 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_9_2008_Win32.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_9_2008_Win32.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_9_2008_x64.bat b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_9_2008_x64.bat index 6726ee80a2c..b4e9dc848ff 100644 --- a/Scripts/BuildScripts/output/build_ogre_Visual_Studio_9_2008_x64.bat +++ b/Scripts/BuildScripts/output/build_ogre_Visual_Studio_9_2008_x64.bat @@ -25,17 +25,17 @@ echo Using CMake at %CMAKE_BIN% mkdir Ogre cd Ogre -IF NOT EXIST ogredeps ( - mkdir ogredeps - echo --- Cloning Ogredeps --- - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +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 --- Ogredeps repo detected. Cloning skipped --- + echo --- ogre-next-deps repo detected. Cloning skipped --- ) -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo --- Building Ogredeps --- +echo --- Building ogre-next-deps --- %CMAKE_BIN% -G %GENERATOR% -A %PLATFORM% .. %CMAKE_BIN% --build . --config Debug %CMAKE_BIN% --build . --target install --config Debug @@ -49,12 +49,12 @@ IF NOT EXIST ogre-next ( ) cd ogre-next IF NOT EXIST Dependencies ( - mklink /D Dependencies ..\ogredeps\build\ogredeps + mklink /D Dependencies ..\ogre-next-deps\build\ogredeps ) mkdir build cd build echo --- Running CMake configure --- -%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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=..\..\ogredeps\build\ogredeps -G %GENERATOR% -A %PLATFORM% .. +%CMAKE_BIN% -D OGRE_USE_BOOST=0 -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 diff --git a/Scripts/BuildScripts/output/build_ogre_linux_c++11.sh b/Scripts/BuildScripts/output/build_ogre_linux_c++11.sh index e23d475f129..b98fb5a7764 100755 --- a/Scripts/BuildScripts/output/build_ogre_linux_c++11.sh +++ b/Scripts/BuildScripts/output/build_ogre_linux_c++11.sh @@ -4,17 +4,17 @@ OGRE_BRANCH_NAME="v2-1" mkdir Ogre cd Ogre -if test ! -f ogredeps; then - mkdir ogredeps - echo "--- Cloning Ogredeps ---" - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +if test ! -f ogre-next-deps; then + mkdir ogre-next-deps + echo "--- Cloning ogre-next-deps ---" + git clone --recurse-submodules --shallow-submodules https://github.com/OGRECave/ogre-next-deps else - echo "--- Ogredeps repo detected. Cloning skipped ---" + echo "--- ogre-next-deps repo detected. Cloning skipped ---" fi -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo "--- Building Ogredeps ---" +echo "--- Building ogre-next-deps ---" cmake -D CMAKE_CXX_STANDARD=11 -G Ninja .. ninja ninja install @@ -27,7 +27,7 @@ if test ! -f ogre-next; then fi cd ogre-next if test ! -f Dependencies; then - ln -s ../ogredeps/build/ogredeps Dependencies + ln -s ../ogre-next-deps/build/ogredeps Dependencies fi mkdir -p build/Debug mkdir -p build/Release diff --git a/Scripts/BuildScripts/output/build_ogre_linux_c++98.sh b/Scripts/BuildScripts/output/build_ogre_linux_c++98.sh index c576353417f..b9cb7ddbcae 100755 --- a/Scripts/BuildScripts/output/build_ogre_linux_c++98.sh +++ b/Scripts/BuildScripts/output/build_ogre_linux_c++98.sh @@ -4,17 +4,17 @@ OGRE_BRANCH_NAME="v2-1" mkdir Ogre cd Ogre -if test ! -f ogredeps; then - mkdir ogredeps - echo "--- Cloning Ogredeps ---" - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +if test ! -f ogre-next-deps; then + mkdir ogre-next-deps + echo "--- Cloning ogre-next-deps ---" + git clone --recurse-submodules --shallow-submodules https://github.com/OGRECave/ogre-next-deps else - echo "--- Ogredeps repo detected. Cloning skipped ---" + echo "--- ogre-next-deps repo detected. Cloning skipped ---" fi -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo "--- Building Ogredeps ---" +echo "--- Building ogre-next-deps ---" cmake -D CMAKE_CXX_STANDARD=98 -G Ninja .. ninja ninja install @@ -27,7 +27,7 @@ if test ! -f ogre-next; then fi cd ogre-next if test ! -f Dependencies; then - ln -s ../ogredeps/build/ogredeps Dependencies + ln -s ../ogre-next-deps/build/ogredeps Dependencies fi mkdir -p build/Debug mkdir -p build/Release diff --git a/Scripts/BuildScripts/output/build_ogre_linux_c++latest.sh b/Scripts/BuildScripts/output/build_ogre_linux_c++latest.sh index fd536f02f0f..e7a89acba76 100755 --- a/Scripts/BuildScripts/output/build_ogre_linux_c++latest.sh +++ b/Scripts/BuildScripts/output/build_ogre_linux_c++latest.sh @@ -4,17 +4,17 @@ OGRE_BRANCH_NAME="v2-1" mkdir Ogre cd Ogre -if test ! -f ogredeps; then - mkdir ogredeps - echo "--- Cloning Ogredeps ---" - hg clone https://bitbucket.org/cabalistic/ogredeps ogredeps +if test ! -f ogre-next-deps; then + mkdir ogre-next-deps + echo "--- Cloning ogre-next-deps ---" + git clone --recurse-submodules --shallow-submodules https://github.com/OGRECave/ogre-next-deps else - echo "--- Ogredeps repo detected. Cloning skipped ---" + echo "--- ogre-next-deps repo detected. Cloning skipped ---" fi -cd ogredeps +cd ogre-next-deps mkdir build cd build -echo "--- Building Ogredeps ---" +echo "--- Building ogre-next-deps ---" cmake -G Ninja .. ninja ninja install @@ -27,7 +27,7 @@ if test ! -f ogre-next; then fi cd ogre-next if test ! -f Dependencies; then - ln -s ../ogredeps/build/ogredeps Dependencies + ln -s ../ogre-next-deps/build/ogredeps Dependencies fi mkdir -p build/Debug mkdir -p build/Release