From 5f2ecd07e49a3793404933d56b1257c985cef1b5 Mon Sep 17 00:00:00 2001 From: baldurk Date: Wed, 19 Apr 2017 19:23:44 +0100 Subject: [PATCH] Don't build python renderdoc modules on OS X --- qrenderdoc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qrenderdoc/CMakeLists.txt b/qrenderdoc/CMakeLists.txt index dc996e5e7..476ddfb9f 100644 --- a/qrenderdoc/CMakeLists.txt +++ b/qrenderdoc/CMakeLists.txt @@ -173,7 +173,7 @@ add_custom_command(OUTPUT QRenderDoc add_custom_target(build-qrenderdoc ALL DEPENDS QRenderDoc DEPENDS renderdoc) # Build python modules - primarily used for constructing documentation -if(UNIX) +if(UNIX AND NOT APPLE) add_subdirectory(Code/pyrenderdoc) endif()