GODT-1675: Don't check cmake ninja on windows.

This commit is contained in:
Jakub
2022-08-23 16:09:47 +02:00
parent fb1494fc81
commit 35bc5de40f

View File

@ -200,8 +200,10 @@ check-build-essentials: check-qt-dir
@$(call check_is_installed,unzip) @$(call check_is_installed,unzip)
@$(call check_is_installed,tar) @$(call check_is_installed,tar)
@$(call check_is_installed,curl) @$(call check_is_installed,curl)
ifneq "${GOOS}" "windows"
@$(call check_is_installed,cmake) @$(call check_is_installed,cmake)
@$(call check_is_installed,ninja) @$(call check_is_installed,ninja)
endif
check-qt-dir: check-qt-dir:
@if ! ls "${QT6DIR}/bin/qt.conf" > /dev/null; then echo "Please set QT6DIR"; exit 1; fi @if ! ls "${QT6DIR}/bin/qt.conf" > /dev/null; then echo "Please set QT6DIR"; exit 1; fi