forked from Open-GD/OpenGD
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrun.bat
More file actions
25 lines (18 loc) · 717 Bytes
/
run.bat
File metadata and controls
25 lines (18 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@echo off
rem !!!Don't move this file
rem usage: run.bat <BUILD_CFG>
rem BUILD_CFG could be Debug,Release,MinSizeRel,RelWithDebInfo
set myDir=%~dp0
set cacheFile=%myDir%run.bat.txt
echo Entering run.bat directory: %myDir%
cd /d %myDir%
set APP_NAME=OpenGD
set BUILD_DIR=build
set BUILD_CFG=%1
rem Determine which build config to run
if not defined BUILD_CFG if exist %cacheFile% set /p BUILD_CFG=< %cacheFile%
if not defined BUILD_CFG set /p BUILD_CFG=Please input Build config(Debug,Release,MinSizeRel,RelWithDebInfo):
if not defined BUILD_CFG set BUILD_CFG=Debug
rem Save run config to run.bat.txt
echo %BUILD_CFG%>%cacheFile%
start /D %myDir%Content %BUILD_DIR%/bin/%APP_NAME%/%BUILD_CFG%/%APP_NAME%.exe