forked from CIS565-Fall-2018/Project4-CUDA-Rasterizer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.bat
27 lines (21 loc) · 746 Bytes
/
build.bat
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
@echo off
echo =========================================
echo ============ CUBIC Render ===============
echo ============= Full Build ================
echo =========================================
echo.
set BUILD_PATH="build"
set ARTIFACT_PATH="CUBIC-Render"
echo ============ Debug Build ================
CALL build_base.bat "Debug" %BUILD_PATH%
CALL build_post.bat "Debug" %BUILD_PATH% %ARTIFACT_PATH%
echo.
echo =========== Release Build ===============
CALL build_base.bat "Release" %BUILD_PATH%
CALL build_post.bat "Release" %BUILD_PATH% %ARTIFACT_PATH%
echo.
echo ======== RelWithDebInfo Build ===========
CALL build_base.bat "RelWithDebInfo" %BUILD_PATH%
CALL build_post.bat "RelWithDebInfo" %BUILD_PATH% %ARTIFACT_PATH%
echo.
pause