From e14e1d270cd25ebf02be66e9748e4b84ecbc4408 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Tue, 5 Sep 2023 04:58:37 +0200 Subject: windows fix --- build_and_test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build_and_test.sh') diff --git a/build_and_test.sh b/build_and_test.sh index 00e8bba..c80c6e8 100644 --- a/build_and_test.sh +++ b/build_and_test.sh @@ -7,13 +7,13 @@ COMPILEPP=g++ OBJ_POSTFIX=.o EXE_POSTFIX= -if command -v cl.exe >/dev/null 2>&1; then +if command -v cl.exe >/dev/null 2>&1; then echo "C compiler found - MSVC" COMPILE=cl.exe COMPILEPP=cl.exe OBJ_POSTFIX=.obj EXE_POSTFIX=.exe -elif command -v gcc >/dev/null 2>&1; then +elif command -v gcc >/dev/null 2>&1; then echo "C compiler found - GCC" elif command -v clang >/dev/null 2>&1; then echo "C compiler found - Clang" -- cgit v1.2.3