File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,9 @@ option(SWIFT_BUILD_STATIC_STDLIB
44
44
"Build static variants of the Swift standard library and SDK overlay"
45
45
FALSE )
46
46
47
-
47
+ option (SWIFT_INCLUDE_BENCHMARKS
48
+ "Create targets for running swift benchmarks"
49
+ TRUE )
48
50
49
51
option (SWIFT_INCLUDE_TESTS "Create targets for building/running tests." TRUE )
50
52
@@ -600,6 +602,9 @@ if(SWIFT_BUILD_TOOLS)
600
602
endif ()
601
603
add_subdirectory (utils)
602
604
add_subdirectory (stdlib)
605
+ if (SWIFT_INCLUDE_BENCHMARKS)
606
+ add_subdirectory (benchmark)
607
+ endif ()
603
608
if (SWIFT_INCLUDE_TESTS)
604
609
add_subdirectory (test )
605
610
add_subdirectory (unittests)
@@ -647,5 +652,3 @@ execute_process(COMMAND date "+%Y%m%d"
647
652
648
653
# CPack must be included *after* its configuration variables are set.
649
654
include (CPack)
650
-
651
- add_subdirectory (benchmark)
You can’t perform that action at this time.
0 commit comments