radeon_raytracing_analyzer
radeon_raytracing_analyzer copied to clipboard
Build system references bdcartifactory.amd.com
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)
This was fixed prior to the last 1.5 release.