1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
From: Xuanteng Huang <xuanteng.huang@outlook.com>
Date: Sun, 19 May 2024 14:58:32 +0800
Subject: disable utils subdirectory
We don't need the script in the utils directory.
Forwarded: not-needed
---
CMakeLists.txt | 2 +-
test/gtest/CMakeLists.txt | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 00301dd..ac94412 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -801,7 +801,7 @@ if(MIOPEN_BUILD_DRIVER)
endif()
add_subdirectory(test)
add_subdirectory(speedtests)
-add_subdirectory(utils)
+# add_subdirectory(utils)
if(MIOPEN_ENABLE_FIN)
add_subdirectory(fin)
endif()
diff --git a/test/gtest/CMakeLists.txt b/test/gtest/CMakeLists.txt
index 6107f24..fe9f727 100644
--- a/test/gtest/CMakeLists.txt
+++ b/test/gtest/CMakeLists.txt
@@ -1,4 +1,4 @@
-include(googletest) #include googletest.cmake
+# include(googletest) #include googletest.cmake
enable_testing()
include(GoogleTest)
|