65 lines
1.1 KiB
Bash
Executable File
65 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $(uname) == Darwin ]; then
|
|
PATH=$PATH:/opt/local/bin
|
|
export PATH
|
|
fi
|
|
|
|
#########################################
|
|
# Build release version
|
|
#########################################
|
|
|
|
if [ ! -d build-release ]; then
|
|
mkdir build-release
|
|
fi
|
|
|
|
cd build-release
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DOPENMESH_BUILD_UNIT_TESTS=TRUE ../
|
|
|
|
#build it
|
|
make
|
|
|
|
#build the unit tests
|
|
make unittests
|
|
|
|
|
|
#########################################
|
|
# Run Release Unittests
|
|
#########################################
|
|
cd Unittests
|
|
|
|
#execute tests
|
|
./unittests --gtest_color=yes --gtest_output=xml
|
|
|
|
cd ..
|
|
cd ..
|
|
|
|
|
|
#########################################
|
|
# Build Debug version and Unittests
|
|
#########################################
|
|
|
|
if [ ! -d build-debug ]; then
|
|
mkdir build-debug
|
|
fi
|
|
|
|
cd build-debug
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Debug -DOPENMESH_BUILD_UNIT_TESTS=TRUE ../
|
|
|
|
#build the unit tests
|
|
make unittests
|
|
|
|
|
|
#########################################
|
|
# Run Debug Unittests
|
|
#########################################
|
|
|
|
cd Unittests
|
|
|
|
# Run the unittests
|
|
./unittests --gtest_color=yes --gtest_output=xml
|
|
|
|
|