cmake: Create an optimized release build (#14414)

This commit is contained in:
Chuck Atkins 2020-01-08 13:17:53 -05:00 committed by GitHub
parent de93830b9a
commit 26ffbe3d21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,8 +168,15 @@ def bootstrap_args(self):
args.append('--sphinx-html')
args.append('--sphinx-man')
# Now for CMake arguments to pass after the initial bootstrap
args.append('--')
# Make sure to create an optimized release build
args.append('-DCMAKE_BUILD_TYPE=Release')
# When building our own private copy of curl then we need to properly
# enable / disable oepnssl
if '+ownlibs' in spec:
args.append('--')
args.append('-DCMAKE_USE_OPENSSL=%s' % str('+openssl' in spec))
return args