mirror of
https://github.com/HandmadeMath/HandmadeMath.git
synced 2025-12-29 16:04:33 +00:00
14 lines
346 B
Batchfile
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
|