Skip to content

Commit

Permalink
Use nmake.exe on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Apr 9, 2023
1 parent 2211775 commit a54c8da
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sh
Expand Up @@ -92,4 +92,8 @@ networkAccessDir="$OUTPUT_DIR/$QT_NAME/qtbase/src/network/access/"
)

# Build Qt.
make -C "$OUTPUT_DIR/build"
[[ "${RUNNER_OS:-}" != macOS ]] || make -C "$OUTPUT_DIR/build"
[[ "${RUNNER_OS:-}" != Windows ]] || {
dir "$OUTPUT_DIR/build/"
nmake.exe -F "$OUTPUT_DIR/build/Makefile"
}

0 comments on commit a54c8da

Please sign in to comment.