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
Bash
Executable File

#!/bin/sh
VENDOR="../vendor"
GLM="$VENDOR/glm"
STB="$VENDOR/stb"
cd "build"
cmake .. \
-DCMAKE_TOOLCHAIN_FILE="$EMSCRIPTEN/cmake/Modules/Platform/Emscripten.cmake" \
-DGLM_INCLUDE_DIR="$GLM" \
-DSTB_INCLUDE_DIR="$STB"