1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
matabstrix/configure

14 lines
222 B
Plaintext
Raw Normal View History

2015-11-03 11:46:05 +00:00
#!/bin/sh
VENDOR="../vendor"
2015-11-13 02:57:23 +00:00
GLM="$VENDOR/glm"
STB="$VENDOR/stb"
2015-11-13 02:57:23 +00:00
cd "build"
cmake .. \
2015-11-13 02:57:23 +00:00
-DCMAKE_TOOLCHAIN_FILE="$EMSCRIPTEN/cmake/Modules/Platform/Emscripten.cmake" \
-DGLM_INCLUDE_DIR="$GLM" \
-DSTB_INCLUDE_DIR="$STB"