You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
338 B
Bash
14 lines
338 B
Bash
#!/bin/sh -e
|
|
|
|
git clone -b release-1.8.1 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}"
|