build: renaming to sourcetrail

This commit is contained in:
Andreas Stallinger
2017-04-07 13:19:09 +02:00
parent 8391a6da57
commit 045a259b2e
224 changed files with 885 additions and 4271 deletions
+6 -6
View File
@@ -38,7 +38,7 @@ function build_type {
echo -e $INFO Starting with buildtype: $1
if [ "$PLATFORM" == "Windows" ]
then
echo -e $INFO Builing the Coati VS Solution
echo -e $INFO Builing the Sourcetrail VS Solution
cmake --build build/win32 --config $1
if [ $? -ne 0 ]
then
@@ -46,9 +46,9 @@ function build_type {
exit 1
fi
else
build Coati $1
build Coati_test $1
build Coati_license_generator $1
build Sourcetrail $1
build Sourcetrail_test $1
build Sourcetrail_license_generator $1
run_tests $1
fi
}
@@ -57,8 +57,8 @@ function run_tests {
echo -e $INFO Run $1 Tests
cd bin/test
echo $1/Coati_test
../../build/$1/test/Coati_test
echo $1/Sourcetrail_test
../../build/$1/test/Sourcetrail_test
if [ $? -eq 0 ]
then
echo -e $PASS $1 Tests passed