We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c5a27a commit 29a7ec6Copy full SHA for 29a7ec6
cmake/sdks.cmake
@@ -191,6 +191,11 @@ if(BUILD_ONLY)
191
endforeach()
192
endif()
193
194
+if (BUILD_BENCHMARKS)
195
+ LIST(APPEND SDK_BUILD_LIST "s3;s3-crt;monitoring;core")
196
+ add_subdirectory(tests/benchmark)
197
+endif ()
198
+
199
LIST(REMOVE_DUPLICATES SDK_BUILD_LIST)
200
LIST(REMOVE_DUPLICATES SDK_DEPENDENCY_BUILD_LIST)
201
@@ -265,10 +270,6 @@ function(add_sdks)
265
270
266
271
267
272
268
- if (BUILD_BENCHMARKS)
269
- add_subdirectory(tests/benchmark)
- endif ()
-
273
# the catch-all config needs to list all the targets in a dependency-sorted order
274
include(dependencies)
275
sort_links(EXPORTS)
0 commit comments