summaryrefslogtreecommitdiff
path: root/other
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-02-11 00:09:07 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-02-11 12:20:36 +0000
commit2e74db5447f89745f4bdc375230e20a7247670a0 (patch)
treeeea5fc2ab7f8741626b2ace7468ebadbfe01d2a3 /other
parent95029f412c173878a066a5d42c16e3f0161fd445 (diff)
Improve gtest finding, support local checkout.
Also fix library dependency order for monolith test.
Diffstat (limited to 'other')
-rwxr-xr-xother/astyle/format-source7
1 files changed, 6 insertions, 1 deletions
diff --git a/other/astyle/format-source b/other/astyle/format-source
index 3757561b..cf190982 100755
--- a/other/astyle/format-source
+++ b/other/astyle/format-source
@@ -45,7 +45,12 @@ if grep '<unresolved>' */*.h; then
45 exit 1 45 exit 1
46fi 46fi
47 47
48SOURCES=`find . "-(" -name "*.[ch]" -or -name "*.cpp" "-)" -and -not -name "*.api.h" -and -not -wholename "*crypto_pwhash*" -and -not -wholename "./super_donators/*"` 48SOURCES=`find . \
49 "-(" -name "*.[ch]" -or -name "*.cpp" "-)" \
50 -and -not -name "*.api.h" \
51 -and -not -wholename "./super_donators/*" \
52 -and -not -wholename "./third_party/*" \
53 -and -not -wholename "./toxencryptsave/crypto_pwhash*"`
49 54
50$ASTYLE -n --options=other/astyle/astylerc $SOURCES 55$ASTYLE -n --options=other/astyle/astylerc $SOURCES
51 56