Skip to content

Commit 87aa486

Browse files
committed
Fix build for windows
1 parent 4f4d31e commit 87aa486

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,12 @@ check_dependencies() {
145145
;;
146146
windows)
147147
log_info "Checking for Visual Studio 2022+ with C++ tools..."
148-
if ! command -v cl &> /dev/null; then
149-
log_error "Visual Studio C++ compiler (cl.exe) not found in PATH"
148+
if ! command -v msbuild &> /dev/null; then
149+
log_error "msbuild not found in PATH"
150150
log_error "Please ensure Visual Studio 2022+ is installed with C++ tools"
151151
exit 1
152152
else
153-
log_success "Visual Studio C++ tools found"
153+
log_success "msbuild found"
154154
fi
155155
;;
156156
esac

0 commit comments

Comments
 (0)