Skip to content

Commit bb94e24

Browse files
committed
Specify -DCMAKE_BUILD_TYPE based on configuration option.
1 parent db6917e commit bb94e24

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Utilities/build-script-helper.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -540,10 +540,13 @@ def cmake_build(args, swiftc_exec, cmake_args, swift_flags, source_path,
540540
"""Configure with CMake and build with Ninja"""
541541
if args.sysroot:
542542
swift_flags.append('-sdk %s' % args.sysroot)
543+
544+
cmake_build_type = 'Debug' if args.configuration == 'debug' else 'Release'
545+
543546
cmd = [
544547
args.cmake_bin, '-G', 'Ninja',
545548
'-DCMAKE_MAKE_PROGRAM=%s' % args.ninja_bin,
546-
'-DCMAKE_BUILD_TYPE:=Release',
549+
'-DCMAKE_BUILD_TYPE:=%s' % cmake_build_type,
547550
'-DCMAKE_Swift_FLAGS=' + ' '.join(swift_flags),
548551
'-DCMAKE_Swift_COMPILER:=%s' % (swiftc_exec),
549552
] + cmake_args + [source_path]

0 commit comments

Comments
 (0)