Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
build: only generate specified build type files
Release and Debug build configurations can not be shared, only
generate specified configuration in `configure`.
  • Loading branch information
legendecas committed Jun 19, 2024
commit 95a97e1e7bfaf5486d0561587ccb96335a97e172
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -2253,7 +2253,7 @@ def make_bin_override():
gyp_args += ['-Dpython=' + python]

if options.use_ninja:
gyp_args += ['-f', 'ninja-' + flavor]
gyp_args += ['-f', 'ninja-' + flavor, '-G', 'config=' + config['BUILDTYPE']]
Comment thread
joyeecheung marked this conversation as resolved.
elif flavor == 'win' and sys.platform != 'msys':
gyp_args += ['-f', 'msvs', '-G', 'msvs_version=auto']
else:
Expand Down