195 lines
6.4 KiB
Batchfile
195 lines
6.4 KiB
Batchfile
@echo off
|
|
|
|
REM Default build is 64-bit
|
|
REM 32-bit compilation is available using "32" as a second parameter when you run msvc_build.bat
|
|
REM How to use:
|
|
REM BUILD 64-bit:
|
|
REM "msvc_build.bat debug" builds 64-bit Debug version of MuseScore without optimizations
|
|
REM "msvc_build.bat relwithdebinfo" builds optimized 64-bit version of MuseScore with almost all debug symbols
|
|
REM "msvc_build.bat release" builds fully optimized 64-bit version of MuseScore without command line output
|
|
REM
|
|
REM BUILD 32-bit:
|
|
REM "msvc_build.bat debug 32" builds 32-bit Debug version of MuseScore
|
|
REM "msvc_build.bat relwithdebinfo 32" builds 32-bit RelWithDebInfo version of MuseScore
|
|
REM "msvc_build.bat release 32" builds 32-bit Release version of MuseScore
|
|
REM
|
|
REM INSTALL 64-bit:
|
|
REM "msvc_build.bat install" put all required files of 64-bit Release build to install folder (msvc.install_x64)
|
|
REM "msvc_build.bat installdebug" put all required files of 64-bit Debug build to install folder (msvc.install_x64)
|
|
REM "msvc_build.bat installrelwithdebinfo" put all required files of 64-bit RelWithDebInfo build to install folder (msvc.install_x64)
|
|
REM
|
|
REM INSTALL 32-bit:
|
|
REM "msvc_build.bat install 32" put all required files of 32-bit Release build to install folder (msvc.install_x86)
|
|
REM "msvc_build.bat installdebug 32" put all required files of 32-bit Debug build to install folder (msvc.install_x86)
|
|
REM "msvc_build.bat installrelwithdebinfo 32" put all required files of 32-bit RelWithDebInfo build to install folder (msvc.install_x86)
|
|
REM
|
|
REM PACKAGE:
|
|
REM "msvc_build.bat package" pack the installer for already built and installed 64-bit Release build (msvc.build_x64/MuseScore-*.msi)
|
|
REM "msvc_build.bat package 32" pack the installer for already built and installed 32-bit Release build (msvc.build_x86/MuseScore-*.msi)
|
|
REM
|
|
REM CLEAN:
|
|
REM "msvc_build.bat clean" remove all files in msvc.* folders and the folders itself
|
|
|
|
SETLOCAL ENABLEEXTENSIONS
|
|
|
|
IF "%GENERATOR_NAME%"=="" (
|
|
CALL :FIND_GENERATOR
|
|
)
|
|
|
|
IF "%GENERATOR_NAME%"=="" (
|
|
ECHO "No supported version of Microsoft Visual Studio (2017 or 2019) found."
|
|
GOTO :END
|
|
)
|
|
|
|
REM BUILD_64 and BUILD_FOR_WINSTORE are used in CMakeLists.txt
|
|
SET BUILD_FOR_WINSTORE=OFF
|
|
SET "BUILD_FOLDER=msvc.build"
|
|
SET "INSTALL_FOLDER=msvc.install"
|
|
|
|
IF "%2"=="32" (
|
|
SET PLATFORM_NAME=Win32
|
|
SET "ARCH=x86"
|
|
SET BUILD_64=OFF
|
|
) ELSE (
|
|
IF NOT "%2"=="" (
|
|
IF NOT "%2"=="64" (
|
|
echo Invalid second argument
|
|
GOTO :END
|
|
) ELSE (
|
|
SET PLATFORM_NAME=x64
|
|
SET "ARCH=x64"
|
|
SET BUILD_64=ON
|
|
)
|
|
) ELSE (
|
|
SET PLATFORM_NAME=x64
|
|
SET "ARCH=x64"
|
|
SET BUILD_64=ON
|
|
)
|
|
)
|
|
|
|
IF NOT "%3"=="" (
|
|
SET BUILD_NUMBER="%3"
|
|
SET BUILD_AUTOUPDATE="ON"
|
|
)
|
|
|
|
IF /I "%1"=="release" (
|
|
SET CONFIGURATION_STR="release"
|
|
GOTO :BUILD
|
|
)
|
|
|
|
IF /I "%1"=="debug" (
|
|
SET CONFIGURATION_STR="debug"
|
|
GOTO :BUILD
|
|
)
|
|
|
|
IF /I "%1"=="relwithdebinfo" (
|
|
SET CONFIGURATION_STR="relwithdebinfo"
|
|
GOTO :BUILD
|
|
)
|
|
|
|
IF /I "%1"=="install" (
|
|
SET "BUILD_FOLDER=%BUILD_FOLDER%_%ARCH%"
|
|
SET CONFIGURATION_STR="release"
|
|
GOTO :INSTALL
|
|
)
|
|
|
|
IF /I "%1"=="installdebug" (
|
|
SET "BUILD_FOLDER=%BUILD_FOLDER%_%ARCH%"
|
|
SET CONFIGURATION_STR="debug"
|
|
GOTO :INSTALL
|
|
)
|
|
|
|
IF /I "%1"=="installrelwithdebinfo" (
|
|
SET "BUILD_FOLDER=%BUILD_FOLDER%_%ARCH%"
|
|
SET CONFIGURATION_STR="relwithdebinfo"
|
|
GOTO :INSTALL
|
|
)
|
|
|
|
IF /I "%1"=="package" (
|
|
cd "%BUILD_FOLDER%_%ARCH%"
|
|
cmake --build . --config RelWithDebInfo --target package
|
|
GOTO :END
|
|
)
|
|
|
|
IF /I "%1"=="revision" (
|
|
echo revisionStep
|
|
git rev-parse --short=7 HEAD > mscore/revision.h
|
|
GOTO :END
|
|
)
|
|
|
|
IF /I "%1"=="clean" (
|
|
for /d %%G in ("msvc.*") do rd /s /q "%%~G"
|
|
GOTO :END
|
|
) ELSE (
|
|
echo No valid parameters are set
|
|
GOTO :END
|
|
)
|
|
|
|
:FIND_GENERATOR
|
|
|
|
REM Usage: CALL :FIND_GENERATOR
|
|
REM Detects the highest supported VS version installed and sets GENERATOR_NAME to the appropriate CMake generator name.
|
|
|
|
REM vswhere.exe is a helper utility that is automatically installed with VS2017 and later (and always at a fixed location).
|
|
SET VSWHERE="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"
|
|
IF NOT EXIST %VSWHERE% EXIT /B
|
|
|
|
REM Try Visual Studio 2019 first.
|
|
CALL :FIND_GENERATOR_VERSION %VSWHERE% 16 2019
|
|
|
|
REM Fall back to Visual Studio 2017.
|
|
IF "%GENERATOR_NAME%"=="" CALL :FIND_GENERATOR_VERSION %VSWHERE% 15 2017
|
|
|
|
EXIT /B
|
|
|
|
:FIND_GENERATOR_VERSION
|
|
|
|
REM Usage: CALL :FIND_GENERATOR_VERSION "[path\]vswhere.exe" major_version_number year
|
|
REM Checks if the specified VS version is installed, and if so, sets GENERATOR_NAME to the appropriate CMake generator name.
|
|
|
|
FOR /F "usebackq delims=. tokens=1" %%I IN (`%1 -version [%2^,^) -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationVersion -format value`) DO (
|
|
IF "%%I"=="%2" SET GENERATOR_NAME=Visual Studio %2 %3
|
|
)
|
|
|
|
EXIT /B
|
|
|
|
:BUILD
|
|
echo Generator is: %GENERATOR_NAME%
|
|
echo Platform is: %PLATFORM_NAME%
|
|
SET "BUILD_FOLDER=%BUILD_FOLDER%_%ARCH%"
|
|
echo Build folder is: %BUILD_FOLDER%
|
|
SET "INSTALL_FOLDER=%INSTALL_FOLDER%_%ARCH%"
|
|
echo Install folder is: %INSTALL_FOLDER%
|
|
if not exist "%BUILD_FOLDER%\nul" mkdir "%BUILD_FOLDER%"
|
|
if not exist "%INSTALL_FOLDER%\nul" mkdir "%INSTALL_FOLDER%"
|
|
echo Building CMake configuration...
|
|
|
|
IF NOT "%MSCORE_STABLE_BUILD%" == "" (
|
|
IF NOT "%CRASH_LOG_SERVER_URL%" == "" (
|
|
IF "%BUILD_FOR_WINSTORE%" == "OFF" (
|
|
SET CRASH_REPORT_URL_OPT=-DCRASH_REPORT_URL=%CRASH_LOG_SERVER_URL% -DBUILD_CRASH_REPORTER=ON
|
|
)
|
|
)
|
|
|
|
IF NOT "%TELEMETRY_TRACK_ID%" == "" (
|
|
SET TELEMETRY_TRACK_ID_OPT=-DTELEMETRY_TRACK_ID=%TELEMETRY_TRACK_ID%
|
|
)
|
|
)
|
|
|
|
REM -DCMAKE_BUILD_NUMBER=%BUILD_NUMBER% -DCMAKE_BUILD_AUTOUPDATE=%BUILD_AUTOUPDATE% %CRASH_REPORT_URL_OPT% are used for CI only
|
|
cd "%BUILD_FOLDER%" & cmake -G "%GENERATOR_NAME%" -A "%PLATFORM_NAME%" -DCMAKE_INSTALL_PREFIX=../%INSTALL_FOLDER% -DCMAKE_BUILD_TYPE=%CONFIGURATION_STR% -DBUILD_FOR_WINSTORE=%BUILD_FOR_WINSTORE% -DBUILD_64=%BUILD_64% -DCMAKE_BUILD_NUMBER=%BUILD_NUMBER% -DBUILD_AUTOUPDATE=%BUILD_AUTOUPDATE% %CRASH_REPORT_URL_OPT% %TELEMETRY_TRACK_ID_OPT% ..
|
|
|
|
echo Building MuseScore...
|
|
cd "%BUILD_FOLDER%" & cmake --build . --config %CONFIGURATION_STR% --target mscore
|
|
GOTO :END
|
|
)
|
|
|
|
:INSTALL
|
|
cd "%BUILD_FOLDER%"
|
|
echo Installing MuseScore files...
|
|
cmake --build . --config %CONFIGURATION_STR% --target install
|
|
GOTO :END
|
|
|
|
:END
|
|
|
|
ENDLOCAL
|