We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
GenerateProjects.bat
BuildAll.bat
1 parent 94d83c9 commit 3b02436Copy full SHA for 3b02436
2 files changed
Scripts/Linux/BuildAll.sh
@@ -7,8 +7,8 @@ CONFIGURATION="${1:-debug}"
7
CONFIG_LOWER=$(echo "$CONFIGURATION" | tr '[:upper:]' '[:lower:]')
8
9
# Generate the projects
10
-pushd "$(dirname "$0")/.." > /dev/null
11
-./Linux/GenerateProjects.sh gmake
+pushd "$(dirname "$0")" > /dev/null
+./GenerateProjects.sh gmake
12
popd > /dev/null
13
14
# Build the solution
Scripts/Windows/BuildAll.bat
@@ -5,7 +5,7 @@ setlocal enabledelayedexpansion
5
set "CONFIGURATION=%~1"
6
:: Generate the projects
-pushd "%~dp0\..\"
+pushd "%~dp0"
call GenerateProjects vs2022 %CONFIGURATION%
popd
0 commit comments