Skip to content

Commit 52334ad

Browse files
authored
Merge pull request swiftlang#2358 from compnerd/inlining
inline some flag computation
2 parents 1124863 + a8ff674 commit 52334ad

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

CMakeLists.txt

+5-12
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,6 @@ if(CMAKE_SYSTEM_NAME STREQUAL Windows)
7575
endif()
7676
add_dependencies(uuid CoreFoundation)
7777

78-
set(swift_optimization_flags)
79-
if(NOT CMAKE_BUILD_TYPE MATCHES Debug)
80-
set(swift_optimization_flags -O)
81-
endif()
82-
if(ENABLE_TESTING)
83-
set(swift_enable_testing -enable-testing)
84-
endif()
8578
if(CMAKE_SYSTEM_NAME STREQUAL Windows)
8679
set(swift_libc_flags -libc;${CMAKE_MSVC_RUNTIME_LIBRARY})
8780
if(CMAKE_SYSTEM_NAME STREQUAL Debug)
@@ -296,8 +289,8 @@ add_swift_library(Foundation
296289
$<$<BOOL:FOUNDATION_ENABLE_LIBDISPATCH>:-DDEPLOYMENT_ENABLE_LIBDISPATCH>
297290
-I;${ICU_INCLUDE_DIR}
298291
${libdispatch_cflags}
299-
${swift_enable_testing}
300-
${swift_optimization_flags}
292+
$<$<BOOL:ENABLE_TESTING>:-enable-testing>
293+
$<$<NOT:$<CONFIG:Debug>>:-O>
301294
${swift_libc_flags}
302295
DEPENDS
303296
uuid
@@ -401,8 +394,8 @@ add_swift_executable(plutil
401394
-I;${CMAKE_CURRENT_BINARY_DIR}/swift
402395
-I;${ICU_INCLUDE_DIR}
403396
${libdispatch_cflags}
404-
${swift_enable_testing}
405-
${swift_optimization_flags}
397+
$<$<BOOL:ENABLE_TESTING>:-enable-testing>
398+
$<$<NOT:$<CONFIG:Debug>>:-O>
406399
${swift_libc_flags}
407400
DEPENDS
408401
uuid
@@ -571,7 +564,7 @@ if(ENABLE_TESTING)
571564
-I;${FOUNDATION_PATH_TO_XCTEST_BUILD}/swift
572565
-I;${ICU_INCLUDE_DIR}
573566
${libdispatch_cflags}
574-
${swift_optimization_flags}
567+
$<$<NOT:$<CONFIG:Debug>>:-O>
575568
${swift_libc_flags}
576569
DEPENDS
577570
Foundation

0 commit comments

Comments
 (0)