radeon_raytracing_analyzer icon indicating copy to clipboard operation
radeon_raytracing_analyzer copied to clipboard

Build system references bdcartifactory.amd.com

Open KonstantinSeurer opened this issue 1 year ago • 1 comments

The server is not reachable. Disabling the code that tries to access it works around the issue:

diff --git a/cmake/devtools_qt_helper.cmake b/cmake/devtools_qt_helper.cmake
index 9acd785..2175dc6 100644
--- a/cmake/devtools_qt_helper.cmake
+++ b/cmake/devtools_qt_helper.cmake
@@ -6,23 +6,23 @@
 cmake_minimum_required(VERSION 3.10)
 
 # linuxdeployqt
-if (UNIX AND NOT APPLE)
-    include(FetchContent)
-    FetchContent_Declare(
-            linuxdeployqt
-            URL "http://bdcartifactory.amd.com/artifactory/DevToolsBDC/Assets/radeon_developer_panel/qt6/linuxdeployqt.zip"
-            SOURCE_DIR ${PROJECT_SOURCE_DIR}/external/linuxdeployqt
-            DOWNLOAD_EXTRACT_TIMESTAMP true
-    )
-    FetchContent_MakeAvailable(linuxdeployqt)
-
-    find_program(LINUXDEPLOYQT "linuxdeployqt" HINTS "${PROJECT_SOURCE_DIR}/external/linuxdeployqt")
-    if (LINUXDEPLOYQT)
-        message(STATUS "Found linuxdeployqt: ${LINUXDEPLOYQT}")
-    else ()
-        message(ERROR "linuxdeployqt not found but is required for build")
-    endif ()
-endif ()
+# if (UNIX AND NOT APPLE)
+#     include(FetchContent)
+#     FetchContent_Declare(
+#             linuxdeployqt
+#             URL "http://bdcartifactory.amd.com/artifactory/DevToolsBDC/Assets/radeon_developer_panel/qt6/linuxdeployqt.zip"
+#             SOURCE_DIR ${PROJECT_SOURCE_DIR}/external/linuxdeployqt
+#             DOWNLOAD_EXTRACT_TIMESTAMP true
+#     )
+#     FetchContent_MakeAvailable(linuxdeployqt)
+
+#     find_program(LINUXDEPLOYQT "linuxdeployqt" HINTS "${PROJECT_SOURCE_DIR}/external/linuxdeployqt")
+#     if (LINUXDEPLOYQT)
+#         message(STATUS "Found linuxdeployqt: ${LINUXDEPLOYQT}")
+#     else ()
+#         message(ERROR "linuxdeployqt not found but is required for build")
+#     endif ()
+# endif ()
 
 # Attempt to automatically find Qt on the local machine
 if (UNIX AND NOT APPLE)

KonstantinSeurer avatar Nov 11 '23 14:11 KonstantinSeurer

This was fixed prior to the last 1.5 release.

ahosier avatar Jun 18 '24 18:06 ahosier