summaryrefslogtreecommitdiff
path: root/libs/assimp/contrib/zip/.travis.sh
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2023-02-12 23:53:22 -0600
committersanine <sanine.not@pm.me>2023-02-12 23:53:22 -0600
commitf1fe73d1909a2448a004a88362a1a532d0d4f7c3 (patch)
treeab37ae3837e2f858de2932bcee9f26e69fab3db1 /libs/assimp/contrib/zip/.travis.sh
parentf567ea1e2798fd3156a416e61f083ea3e6b95719 (diff)
switch to tinyobj and nanovg from assimp and cairo
Diffstat (limited to 'libs/assimp/contrib/zip/.travis.sh')
-rwxr-xr-xlibs/assimp/contrib/zip/.travis.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/libs/assimp/contrib/zip/.travis.sh b/libs/assimp/contrib/zip/.travis.sh
deleted file mode 100755
index 9cb03ee..0000000
--- a/libs/assimp/contrib/zip/.travis.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-#
-# Build script for travis-ci.org builds.
-#
-if [ $ANALYZE = "true" ] && [ "$CC" = "clang" ]; then
- # scan-build -h
- scan-build cmake -G "Unix Makefiles"
- scan-build -enable-checker security.FloatLoopCounter \
- -enable-checker security.insecureAPI.UncheckedReturn \
- --status-bugs -v \
- make -j 8 \
- make -j 8 test
-else
- cmake -DCMAKE_BUILD_TYPE=Debug -DSANITIZE_ADDRESS=On -DCMAKE_INSTALL_PREFIX=_install
- make -j 8
- make install
- ASAN_OPTIONS=detect_leaks=0 LSAN_OPTIONS=verbosity=1:log_threads=1 ctest -V
-fi