ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
26 lines
559 B
Batchfile
26 lines
559 B
Batchfile
@echo off
|
|
@setlocal enableextensions
|
|
|
|
if "%~1" == "/?" goto :help
|
|
if "%~1" == "-?" goto :help
|
|
if "%~1" == "/help" goto :help
|
|
if "%~1" == "-help" goto :help
|
|
if "%~1" == "--help" goto :help
|
|
goto :run
|
|
|
|
:help
|
|
echo Usage:
|
|
echo %~nx0 [SOLUTION_CONFIG]
|
|
echo Examples:
|
|
echo %~nx0 "Release|Win32" (default)
|
|
echo %~nx0 "Debug|Win32"
|
|
echo %~nx0 "Release|ARM64"
|
|
echo %~nx0 "Debug|ARM64"
|
|
echo etc.
|
|
exit /b 2
|
|
|
|
:run
|
|
set _SOLUTION_CONFIG="%~1"
|
|
if %_SOLUTION_CONFIG% == "" set _SOLUTION_CONFIG="Release|Win32"
|
|
devenv "%~dp0.\vstudio.sln" /build %_SOLUTION_CONFIG%
|