Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

Commit d4e589c

Browse files
committed
Fix
1 parent da5a562 commit d4e589c

11 files changed

Lines changed: 7256 additions & 6976 deletions

File tree

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
.vs
22
.vs/*
3+
.idea
34
.project
45
.classpath
56
.settings
67
.settings/*
7-
/target/
8+
**/target/
9+
/target/
10+
*.iml

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.0)
22

33
project("osumer-native")
44

5-
set(JAVA_HOME "C:\\Program Files (x86)\\Java\\jdk1.8.0_212")
5+
set(JAVA_HOME "C:\\Program Files (x86)\\Java\\jdk1.8.0_311")
66
set(DIRECTX_SDK "C:\\Program Files (x86)\\Microsoft DirectX SDK (June 2010)")
77
#find_package(JNI REQUIRED)
88

osumer-jre

osumer-lib/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,26 @@
2727
<artifactId>gson</artifactId>
2828
<version>2.8.5</version>
2929
</dependency>
30+
<dependency>
31+
<groupId>org.openjfx</groupId>
32+
<artifactId>javafx-swing</artifactId>
33+
<version>17.0.1</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>org.openjfx</groupId>
37+
<artifactId>javafx-media</artifactId>
38+
<version>17.0.1</version>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.openjfx</groupId>
42+
<artifactId>javafx-controls</artifactId>
43+
<version>17.0.1</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.openjfx</groupId>
47+
<artifactId>javafx-fxml</artifactId>
48+
<version>17.0.1</version>
49+
</dependency>
3050
</dependencies>
3151
<build>
3252
<plugins>

0 commit comments

Comments
 (0)