Skip to content

Commit 92830b6

Browse files
committedNov 3, 2015
Add conditional logic for including benchmarks.
1 parent ae7667f commit 92830b6

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
 

‎CMakeLists.txt

+6-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ option(SWIFT_BUILD_STATIC_STDLIB
4444
"Build static variants of the Swift standard library and SDK overlay"
4545
FALSE)
4646

47-
47+
option(SWIFT_INCLUDE_BENCHMARKS
48+
"Create targets for running swift benchmarks"
49+
TRUE)
4850

4951
option(SWIFT_INCLUDE_TESTS "Create targets for building/running tests." TRUE)
5052

@@ -600,6 +602,9 @@ if(SWIFT_BUILD_TOOLS)
600602
endif()
601603
add_subdirectory(utils)
602604
add_subdirectory(stdlib)
605+
if(SWIFT_INCLUDE_BENCHMARKS)
606+
add_subdirectory(benchmark)
607+
endif()
603608
if(SWIFT_INCLUDE_TESTS)
604609
add_subdirectory(test)
605610
add_subdirectory(unittests)
@@ -647,5 +652,3 @@ execute_process(COMMAND date "+%Y%m%d"
647652

648653
# CPack must be included *after* its configuration variables are set.
649654
include(CPack)
650-
651-
add_subdirectory(benchmark)

0 commit comments

Comments
 (0)
Please sign in to comment.