Skip to content

Commit

Permalink
Build System - Build packages by default.
Browse files Browse the repository at this point in the history
You need to explicitly disable the packages if you don't want to build
them.

I know that's annoying when most of the time you don't want to produce a
package, you just want to install locally, test, and iterate on the
code.

This change makes it possible that a default build from a random user
will produce a package ready for installation, which is probably what
they want.
  • Loading branch information
david-cattermole committed Sep 14, 2024
1 parent 4dba627 commit 2d87324
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/internal/build_mmSolver_linux.bash
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ INSTALL_MODULE_DIR="${HOME}/maya/${MAYA_VERSION}/modules"

# Build ZIP Package.
# For developer use. Make ZIP packages ready to distribute to others.
BUILD_PACKAGE=0
BUILD_PACKAGE=1

# What directory to build the project in?
BUILD_DIR_BASE="${PROJECT_ROOT}/../"
Expand Down
2 changes: 1 addition & 1 deletion scripts/internal/build_mmSolver_windows64.bat
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ SET INSTALL_MODULE_DIR="%USERPROFILE%\My Documents\maya\%MAYA_VERSION%\modules"

:: Build ZIP Package.
:: For developer use. Make ZIP packages ready to distribute to others.
SET BUILD_PACKAGE=0
SET BUILD_PACKAGE=1

:: Do not edit below, unless you know what you're doing.
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
Expand Down

0 comments on commit 2d87324

Please sign in to comment.