mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
14 lines
321 B
Bash
Executable File
14 lines
321 B
Bash
Executable File
#!/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}"
|