mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 10:23:51 +00:00
14 lines
321 B
Bash
14 lines
321 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
git clone https://github.com/google/googletest.git
|
||
|
cd googletest
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake \
|
||
|
-D CMAKE_BUILD_TYPE="${CONFIGURATION}" \
|
||
|
-D CMAKE_INSTALL_PREFIX=. \
|
||
|
-G "${GENERATOR}" \
|
||
|
..
|
||
|
cmake --build . --config "${CONFIGURATION}"
|
||
|
cmake --build . --target install --config "${CONFIGURATION}"
|