-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake.bat
More file actions
33 lines (24 loc) · 737 Bytes
/
make.bat
File metadata and controls
33 lines (24 loc) · 737 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
26
27
28
29
30
31
32
33
:: Outer make.bat (MousePaw Media Build System)
:: Version: 3.3.0
@echo off
setlocal
:: CHANGE: Library name
set LIB_PROJECT=Sandbox
:: CHANGE: Executable name
set EXE_PROJECT=Sandbox Tester
:: CHANGE: Project base filenames
set LIB_NAME=sandbox
set EXE_NAME=%LIB_NAME%-tester
:: CHANGE: Target/alias name for executable (optional)
set EXE_NICKNAME=tester
:: CHANGE: Uncomment for header-only libraries.
set /A HEADER_ONLY=1
:: CHANGE: Library source directory
set LIB_SRC=%LIB_NAME%-source
:: CHANGE: Executable source directory
set EXE_SRC=%EXE_NAME%
:: CHANGE: Ready directory name
set READY_DIR=%LIB_NAME%
:: Includes inner make.bat logic. (Change if necessary to point to outer.bat)
call build_system\outer.bat %*
endlocal