We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f4d31e commit 87aa486Copy full SHA for 87aa486
1 file changed
build.sh
@@ -145,12 +145,12 @@ check_dependencies() {
145
;;
146
windows)
147
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"
+ if ! command -v msbuild &> /dev/null; then
+ log_error "msbuild not found in PATH"
150
log_error "Please ensure Visual Studio 2022+ is installed with C++ tools"
151
exit 1
152
else
153
- log_success "Visual Studio C++ tools found"
+ log_success "msbuild found"
154
fi
155
156
esac
0 commit comments