mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
9 lines
315 B
Bash
Executable File
9 lines
315 B
Bash
Executable File
#!/bin/sh
|
|
|
|
free -m
|
|
mkdir build
|
|
cd build
|
|
export CODE_COVERAGE=1
|
|
if [ "${CC}" = "clang" ]; then export CODE_COVERAGE=0; fi
|
|
${ANALYZE}cmake .. -DBUILD_WITH_CODE_COVERAGE=${CODE_COVERAGE} -DBUILD_UNITTESTS=1 -DCMAKE_INSTALL_PREFIX=/usr -DBINDIR=/usr/games -DCMAKE_BUILD_TYPE="RelWithDebInfo" -DUSE_SYSTEM_TINYXML=TRUE
|