Add: Particle sim test example1 Add: build script for example1 Add: raylib gitmodule for example1
17 lines
480 B
Batchfile
17 lines
480 B
Batchfile
@echo off
|
|
|
|
REM Build Script for Example 1
|
|
|
|
mkdir build
|
|
|
|
git submodule update --init
|
|
|
|
REM pushd ".\external\raylib\"
|
|
REM cmake -S . -B build
|
|
REM cmake --build build --config Release
|
|
REM popd
|
|
|
|
pushd ".\build"
|
|
cl /Zi raylib.lib user32.lib opengl32.lib gdi32.lib winmm.lib msvcrt.lib shell32.lib "..\example1.c" -Ic:"\external\raylib\build\raylib\include" /link /libpath:c:"..\external\raylib\build\raylib\Release" /NODEFAULTLIB:libcmt /NODEFAULTLIB:msvcrt /NODEFAULTLIB:libcmtd
|
|
popd
|