-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
omit build of cucim_benchmarks and cucim_tests on arm64
- Loading branch information
Showing
2 changed files
with
36 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 0ab2e17..2a42462 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -138,7 +138,7 @@ set(CUCIM_PACKAGE_NAME cucim) # cucim | ||
################################################################################ | ||
add_subdirectory(cpp) | ||
add_subdirectory(gds) | ||
-add_subdirectory(benchmarks) | ||
+# add_subdirectory(benchmarks) | ||
add_subdirectory(examples/cpp) | ||
|
||
################################################################################ | ||
@@ -155,7 +155,7 @@ configure_file(${CMAKE_CURRENT_LIST_DIR}/examples/cpp/CMakeLists.txt.examples.re | ||
set(INSTALL_TARGETS | ||
${CUCIM_PACKAGE_NAME} | ||
fmt-header-only | ||
- cucim_benchmarks | ||
+ # cucim_benchmarks | ||
) | ||
|
||
install(TARGETS ${INSTALL_TARGETS} | ||
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt | ||
index 67409a6..d2230b3 100644 | ||
--- a/cpp/CMakeLists.txt | ||
+++ b/cpp/CMakeLists.txt | ||
@@ -214,7 +214,7 @@ add_library(${CUCIM_PACKAGE_NAME}::${CUCIM_PACKAGE_NAME}-header-only ALIAS ${CUC | ||
################################################################################ | ||
# Add tests | ||
################################################################################ | ||
-add_subdirectory(tests) | ||
+# add_subdirectory(tests) | ||
|
||
################################################################################# | ||
## Add bindings |