From 35bc5de40fd7c25b62bd68e0e19f651355944493 Mon Sep 17 00:00:00 2001 From: Jakub Date: Tue, 23 Aug 2022 16:09:47 +0200 Subject: [PATCH] GODT-1675: Don't check cmake ninja on windows. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 84c19fe8..5dfb1ddb 100644 --- a/Makefile +++ b/Makefile @@ -200,8 +200,10 @@ check-build-essentials: check-qt-dir @$(call check_is_installed,unzip) @$(call check_is_installed,tar) @$(call check_is_installed,curl) +ifneq "${GOOS}" "windows" @$(call check_is_installed,cmake) @$(call check_is_installed,ninja) +endif check-qt-dir: @if ! ls "${QT6DIR}/bin/qt.conf" > /dev/null; then echo "Please set QT6DIR"; exit 1; fi