Setup build enviorment

This commit is contained in:
Jaby
2022-08-21 16:25:37 +02:00
parent 90eac84874
commit 0c52689ebe
9 changed files with 185 additions and 4 deletions

11
src/Library/run_make.bat Normal file
View File

@@ -0,0 +1,11 @@
@echo off
rem run_make.bat build|clean|rebuild debug|release
IF %1 == build (
set make_target=all
) else (
set make_target=%1
)
@echo make %make_target% BUILD_PROFILE=%2
wsl make %make_target% BUILD_PROFILE=%2