The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

gradle: Provide a default eigenIncludeDir that works on Linux

+3 -2
+3 -2
build.gradle
··· 22 22 sharedTargetSdk = 30 23 23 sharedMinSdk = 26 24 24 25 - // If you get an error here, make sure you have this set in local.properties 26 - eigenIncludeDir = project.property('eigenIncludeDir') 25 + // If you are building on Windows, you will need to explicitly set eigenIncludeDir in your 26 + // local.properties file since the default value provided below only makes sense on *nix 27 + eigenIncludeDir = project.findProperty('eigenIncludeDir') ?: '/usr/include/eigen3' 27 28 } 28 29 29 30 allprojects {