Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .nb-gradle-properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<gradle-project-properties>
<!--DO NOT EDIT THIS FILE! - Used by the Gradle plugin of NetBeans.-->
<license-header>
<name>New BSD (3-clause) License</name>
<template>license.txt</template>
<property name="organization">jMonkeyEngine</property>
</license-header>
</gradle-project-properties>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<gradle-project-properties>
<!--DO NOT EDIT THIS FILE! - Used by the Gradle plugin of NetBeans.-->
<license-header>
<name>New BSD (3-clause) License</name>
<template>license.txt</template>
<property name="organization">jMonkeyEngine</property>
</license-header>
</gradle-project-properties>
7 changes: 6 additions & 1 deletion jme3-vr/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ if (!hasProperty('mainClass')) {
ext.mainClass = ''
}

def lwjglVersion = '3.1.3'
def lwjglVersion = '3.2.0'

sourceCompatibility = '1.8'

Expand All @@ -18,4 +18,9 @@ dependencies {
// Native LibOVR/Oculus support
compile "org.lwjgl:lwjgl-ovr:${lwjglVersion}"
runtime "org.lwjgl:lwjgl-ovr:${lwjglVersion}:natives-windows"

compile "org.lwjgl:lwjgl-openvr:${lwjglVersion}"
compile "org.lwjgl:lwjgl-openvr:${lwjglVersion}:natives-windows"
compile "org.lwjgl:lwjgl-openvr:${lwjglVersion}:natives-linux"
compile "org.lwjgl:lwjgl-openvr:${lwjglVersion}:natives-macos"
}
Loading