-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Guillaume Anctil
committed
May 1, 2019
1 parent
3e8bfe7
commit e270903
Showing
83 changed files
with
67,524 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
target/ | ||
.classpath | ||
.flattened-pom.xml | ||
.settings/ | ||
.project | ||
.vs/ | ||
CMakeFiles/ | ||
CMakeCache.txt | ||
*.cmake | ||
*.vcxproj.user | ||
pom.xml.versionsBackup | ||
drift-fx-jogl-native/win-x64/*.vcxproj* | ||
drift-fx-jogl-native/win-x64/*.sln | ||
drift-fx-jogl-native/win-x64/DriftFX/ | ||
drift-fx-jogl-native/win-x64/lib/ | ||
drift-fx-jogl-native/win-x64/x64/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
# drift-fx-jogl | ||
A modified drift-fx implementation for integrating javafx with opengl on jogl | ||
Drift-fx is available here: https://github.com/eclipse-efx/efxclipse-drift | ||
|
||
Support for java 11 is included and the maven setup is a multi-release jar, but the java 11 is mostly untested. | ||
|
||
This was forked from the very first released code and is mostly for personal projects, don't expect much support. When time permits, I will try to upstream if desired. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>dev.anctil.drift-fx</groupId> | ||
<artifactId>drift-fx-jogl-parent</artifactId> | ||
<version>0.5.0</version> | ||
</parent> | ||
|
||
<artifactId>drift-fx-jogl-jfx11</artifactId> | ||
|
||
<properties> | ||
<maven.compiler.release>11</maven.compiler.release> | ||
<maven.compiler.source>11</maven.compiler.source> | ||
<maven.compiler.target>11</maven.compiler.target> | ||
<maven.install.skip>true</maven.install.skip> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>dev.anctil.drift-fx</groupId> | ||
<artifactId>drift-fx-jogl-jfx8</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.openjfx</groupId> | ||
<artifactId>javafx-graphics</artifactId> | ||
<version>11.0.2</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>3.1.1</version> | ||
<configuration> | ||
<archive> | ||
<addMavenDescriptor>false</addMavenDescriptor> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
Oops, something went wrong.