Merge branch 'GoaLitiuM-msbuild_detect_fix'
This commit is contained in:
@@ -11,16 +11,6 @@ for %%I in (Source\Logo.png) do if %%~zI LSS 2000 (
|
|||||||
call "Development\Scripts\Windows\GetMSBuildPath.bat"
|
call "Development\Scripts\Windows\GetMSBuildPath.bat"
|
||||||
if errorlevel 1 goto Error_NoVisualStudioEnvironment
|
if errorlevel 1 goto Error_NoVisualStudioEnvironment
|
||||||
|
|
||||||
if not exist "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" goto Compile
|
|
||||||
for /f "delims=" %%i in ('"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere" -latest -products * -requires Microsoft.Component.MSBuild -property installationPath') do (
|
|
||||||
for %%j in (15.0, Current) do (
|
|
||||||
if exist "%%i\MSBuild\%%j\Bin\MSBuild.exe" (
|
|
||||||
set MSBUILD_PATH="%%i\MSBuild\%%j\Bin\MSBuild.exe"
|
|
||||||
goto Compile
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
:Compile
|
:Compile
|
||||||
md Cache\Intermediate >nul 2>nul
|
md Cache\Intermediate >nul 2>nul
|
||||||
dir /s /b Source\Tools\Flax.Build\*.cs >Cache\Intermediate\Flax.Build.Files.txt
|
dir /s /b Source\Tools\Flax.Build\*.cs >Cache\Intermediate\Flax.Build.Files.txt
|
||||||
@@ -44,7 +34,7 @@ goto Exit
|
|||||||
echo CallBuildTool ERROR: The script is in invalid directory.
|
echo CallBuildTool ERROR: The script is in invalid directory.
|
||||||
goto Exit
|
goto Exit
|
||||||
:Error_NoVisualStudioEnvironment
|
:Error_NoVisualStudioEnvironment
|
||||||
echo CallBuildTool ERROR: Missing Visual Studio 2015 or newer.
|
echo CallBuildTool ERROR: Missing Visual Studio 2022 or newer.
|
||||||
goto Exit
|
goto Exit
|
||||||
:Error_CompilationFailed
|
:Error_CompilationFailed
|
||||||
echo CallBuildTool ERROR: Failed to compile Flax.Build project.
|
echo CallBuildTool ERROR: Failed to compile Flax.Build project.
|
||||||
|
|||||||
@@ -4,66 +4,26 @@ rem Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
|
|||||||
|
|
||||||
set MSBUILD_PATH=
|
set MSBUILD_PATH=
|
||||||
|
|
||||||
|
rem Look for MSBuild version 17.0 or later
|
||||||
if not exist "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" goto VsWhereNotFound
|
if not exist "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" goto VsWhereNotFound
|
||||||
for /f "delims=" %%i in ('"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere" -latest -products * -requires Microsoft.Component.MSBuild -property installationPath') do (
|
for /f "delims=" %%i in ('"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere" -version 17.0 -latest -products * -requires Microsoft.Component.MSBuild -property installationPath') do (
|
||||||
if exist "%%i\MSBuild\15.0\Bin\MSBuild.exe" (
|
|
||||||
set MSBUILD_PATH="%%i\MSBuild\15.0\Bin\MSBuild.exe"
|
|
||||||
goto End
|
|
||||||
)
|
|
||||||
)
|
|
||||||
for /f "delims=" %%i in ('"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere" -latest -prerelease -products * -requires Microsoft.Component.MSBuild -property installationPath') do (
|
|
||||||
if exist "%%i\MSBuild\15.0\Bin\MSBuild.exe" (
|
|
||||||
set MSBUILD_PATH="%%i\MSBuild\15.0\Bin\MSBuild.exe"
|
|
||||||
goto End
|
|
||||||
)
|
|
||||||
if exist "%%i\MSBuild\Current\Bin\MSBuild.exe" (
|
if exist "%%i\MSBuild\Current\Bin\MSBuild.exe" (
|
||||||
set MSBUILD_PATH="%%i\MSBuild\Current\Bin\MSBuild.exe"
|
set MSBUILD_PATH="%%i\MSBuild\Current\Bin\MSBuild.exe"
|
||||||
goto End
|
goto End
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
:VsWhereNotFound
|
|
||||||
|
|
||||||
if exist "%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe" (
|
rem Look for MSBuild version 17.0 or later in pre-release versions
|
||||||
set MSBUILD_PATH="%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe"
|
for /f "delims=" %%i in ('"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere" -version 17.0 -latest -prerelease -products * -requires Microsoft.Component.MSBuild -property installationPath') do (
|
||||||
goto End
|
if exist "%%i\MSBuild\Current\Bin\MSBuild.exe" (
|
||||||
|
set MSBUILD_PATH="%%i\MSBuild\Current\Bin\MSBuild.exe"
|
||||||
|
goto End
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
echo GetMSBuildPath ERROR: Could not find MSBuild version 17.0 or later.
|
||||||
call :GetInstallPath Microsoft\VisualStudio\SxS\VS7 15.0 MSBuild\15.0\bin\MSBuild.exe
|
exit /B 1
|
||||||
if not errorlevel 1 goto End
|
:VsWhereNotFound
|
||||||
call :GetInstallPath Microsoft\MSBuild\ToolsVersions\14.0 MSBuildToolsPath MSBuild.exe
|
echo GetMSBuildPath ERROR: vswhere.exe was not found.
|
||||||
if not errorlevel 1 goto End
|
|
||||||
call :GetInstallPath Microsoft\MSBuild\ToolsVersions\12.0 MSBuildToolsPath MSBuild.exe
|
|
||||||
if not errorlevel 1 goto End
|
|
||||||
call :GetInstallPath Microsoft\MSBuild\ToolsVersions\4.0 MSBuildToolsPath MSBuild.exe
|
|
||||||
if not errorlevel 1 goto End
|
|
||||||
|
|
||||||
exit /B 1
|
exit /B 1
|
||||||
:End
|
:End
|
||||||
exit /B 0
|
exit /B 0
|
||||||
|
|
||||||
:GetInstallPath
|
|
||||||
for /f "tokens=2,*" %%A in ('REG.exe query HKCU\SOFTWARE\%1 /v %2 2^>Nul') do (
|
|
||||||
if exist "%%B%%3" (
|
|
||||||
set MSBUILD_PATH="%%B%3"
|
|
||||||
exit /B 0
|
|
||||||
)
|
|
||||||
)
|
|
||||||
for /f "tokens=2,*" %%A in ('REG.exe query HKLM\SOFTWARE\%1 /v %2 2^>Nul') do (
|
|
||||||
if exist "%%B%3" (
|
|
||||||
set MSBUILD_PATH="%%B%3"
|
|
||||||
exit /B 0
|
|
||||||
)
|
|
||||||
)
|
|
||||||
for /f "tokens=2,*" %%A in ('REG.exe query HKCU\SOFTWARE\Wow6432Node\%1 /v %2 2^>Nul') do (
|
|
||||||
if exist "%%B%%3" (
|
|
||||||
set MSBUILD_PATH="%%B%3"
|
|
||||||
exit /B 0
|
|
||||||
)
|
|
||||||
)
|
|
||||||
for /f "tokens=2,*" %%A in ('REG.exe query HKLM\SOFTWARE\Wow6432Node\%1 /v %2 2^>Nul') do (
|
|
||||||
if exist "%%B%3" (
|
|
||||||
set MSBUILD_PATH="%%B%3"
|
|
||||||
exit /B 0
|
|
||||||
)
|
|
||||||
)
|
|
||||||
exit /B 1
|
|
||||||
@@ -31,19 +31,20 @@ Follow the instructions below to compile and run the engine from source.
|
|||||||
* Install Visual Studio 2022 or newer
|
* Install Visual Studio 2022 or newer
|
||||||
* Install Windows 8.1 SDK or newer (via Visual Studio Installer)
|
* Install Windows 8.1 SDK or newer (via Visual Studio Installer)
|
||||||
* Install Microsoft Visual C++ 2015 v140 toolset or newer (via Visual Studio Installer)
|
* Install Microsoft Visual C++ 2015 v140 toolset or newer (via Visual Studio Installer)
|
||||||
* Install .Net 7 SDK (via Visual Studio Installer or [from web](https://dotnet.microsoft.com/en-us/download/dotnet/7.0))
|
* Install .NET 7 SDK for **Windows x64** (via Visual Studio Installer or [from web](https://dotnet.microsoft.com/en-us/download/dotnet/7.0))
|
||||||
* Install Git with LFS
|
* Install Git with LFS
|
||||||
* Clone repo (with LFS)
|
* Clone repo (with LFS)
|
||||||
* Run **GenerateProjectFiles.bat**
|
* Run **GenerateProjectFiles.bat**
|
||||||
* Open `Flax.sln` and set solution configuration to **Editor.Development** and solution platform to **Win64**
|
* Open `Flax.sln` and set solution configuration to **Editor.Development** and solution platform to **Win64**
|
||||||
* Set Flax (C++) or FlaxEngine (C#) as startup project
|
* Set Flax (C++) or FlaxEngine (C#) as startup project
|
||||||
* Compile Flax project (hit F7 or CTRL+Shift+B)
|
* Compile Flax project (hit F7 or CTRL+Shift+B)
|
||||||
|
* Optionally set Debug Type to **Managed Only (.NET Core)** to debug C#-only, or **Mixed (.NET Core)** to debug both C++ and C#
|
||||||
* Run Flax (hit F5 key)
|
* Run Flax (hit F5 key)
|
||||||
|
|
||||||
## Linux
|
## Linux
|
||||||
|
|
||||||
* Install Visual Studio Code
|
* Install Visual Studio Code
|
||||||
* Install .Net 7 SDK ([https://dotnet.microsoft.com/en-us/download/dotnet/7.0](https://dotnet.microsoft.com/en-us/download/dotnet/7.0))
|
* Install .NET 7 SDK ([https://dotnet.microsoft.com/en-us/download/dotnet/7.0](https://dotnet.microsoft.com/en-us/download/dotnet/7.0))
|
||||||
* Ubuntu: `sudo apt install dotnet-sdk-7.0`
|
* Ubuntu: `sudo apt install dotnet-sdk-7.0`
|
||||||
* Install Vulkan SDK ([https://vulkan.lunarg.com/](https://vulkan.lunarg.com/))
|
* Install Vulkan SDK ([https://vulkan.lunarg.com/](https://vulkan.lunarg.com/))
|
||||||
* Ubuntu: `sudo apt install vulkan-sdk`
|
* Ubuntu: `sudo apt install vulkan-sdk`
|
||||||
@@ -66,7 +67,7 @@ Follow the instructions below to compile and run the engine from source.
|
|||||||
## Mac
|
## Mac
|
||||||
|
|
||||||
* Install XCode
|
* Install XCode
|
||||||
* Install .Net 7 SDK ([https://dotnet.microsoft.com/en-us/download/dotnet/7.0](https://dotnet.microsoft.com/en-us/download/dotnet/7.0))
|
* Install .NET 7 SDK ([https://dotnet.microsoft.com/en-us/download/dotnet/7.0](https://dotnet.microsoft.com/en-us/download/dotnet/7.0))
|
||||||
* Install Vulkan SDK ([https://vulkan.lunarg.com/](https://vulkan.lunarg.com/))
|
* Install Vulkan SDK ([https://vulkan.lunarg.com/](https://vulkan.lunarg.com/))
|
||||||
* Clone repo (with LFS)
|
* Clone repo (with LFS)
|
||||||
* Run `GenerateProjectFiles.command`
|
* Run `GenerateProjectFiles.command`
|
||||||
|
|||||||
Reference in New Issue
Block a user