From 87d52959264b8dca3053d94218d7188520cb0c81 Mon Sep 17 00:00:00 2001 From: Jake Turner Date: Thu, 22 Apr 2021 20:45:44 +0100 Subject: [PATCH] Disable pyrenderdoc on Apple The python brew install does not include universal binaries Disabling pyrenderdoc on Apple allows for the generation of universal binaries by the Apple CI --- qrenderdoc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt index 551dde4f2..40413c752 100644 --- a/qrenderdoc/CMakeLists.txt +++ b/qrenderdoc/CMakeLists.txt @@ -334,6 +334,6 @@ install (CODE "MESSAGE(\"NB: Your paths may vary.\")") endif() # if(ENABLE_QRENDERDOC) # Build python modules - primarily used for constructing documentation -if(ENABLE_PYRENDERDOC AND UNIX) +if(ENABLE_PYRENDERDOC AND UNIX AND NOT APPLE) add_subdirectory(Code/pyrenderdoc) endif()