[Bf-blender-cvs] [2c41ffa3808] soc-2019-openxr: Fix compiling with external OpenXR SDK on Windows

Julian Eisel noreply at git.blender.org
Thu Aug 15 23:52:37 CEST 2019


Commit: 2c41ffa38088dc4c65ef1f69d01a8ad97eb12dee
Author: Julian Eisel
Date:   Thu Aug 15 21:48:45 2019 +0200
Branches: soc-2019-openxr
https://developer.blender.org/rB2c41ffa38088dc4c65ef1f69d01a8ad97eb12dee

Fix compiling with external OpenXR SDK on Windows

===================================================================

M	intern/ghost/CMakeLists.txt

===================================================================

diff --git a/intern/ghost/CMakeLists.txt b/intern/ghost/CMakeLists.txt
index 602e921bc16..6a328a3fb76 100644
--- a/intern/ghost/CMakeLists.txt
+++ b/intern/ghost/CMakeLists.txt
@@ -362,6 +362,12 @@ if(WITH_OPENXR)
     intern/GHOST_IXrGraphicsBinding.h
     intern/GHOST_XrSession.h
   )
+  list(APPEND INC_SYS
+    ${OPENXR_SDK_INCLUDE_DIR}
+  )
+  list(APPEND LIB
+    shlwapi
+  )
 
   include(xr_platform_defines)



More information about the Bf-blender-cvs mailing list