Files
HandmadeMath/example/build.bat
2018-07-10 21:26:16 -05:00

14 lines
346 B
Batchfile

@echo off
mkdir build
pushd build
cl^
/I..\.. /I..\external\glew\include /I..\external\glfw-win64\include^
/MD /EHsc^
..\src\*.cpp^
/Fehmm_example.exe^
/link^
/LIBPATH:..\external\glew\lib\Release\x64 /LIBPATH:..\external\glfw-win64\lib-vc2015^
opengl32.lib gdi32.lib user32.lib shell32.lib glew32.lib glfw3.lib
popd