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
321 B
Bash
14 lines
321 B
Bash
7 years ago
|
#!/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}"
|