Skip to content

Commit 3d2425c

Browse files
committed
readme
1 parent d5b95ee commit 3d2425c

11 files changed

Lines changed: 20 additions & 8 deletions

File tree

build.gradle

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
plugins {
22
id 'application'
3-
//id 'org.openjfx.javafxplugin' version '0.0.13'
43
}
54

65
group 'ru.futurelink.gerber.panelizer'
7-
version '1.0-SNAPSHOT'
6+
version '0.1'
87

98
repositories {
109
mavenCentral()
1110
}
1211

13-
/*javafx {
14-
version = "19"
15-
modules = [ 'javafx.controls', 'javafx.fxml' ]
16-
}*/
17-
1812
dependencies {
13+
1914
implementation "org.projectlombok:lombok:1.18.24"
2015
annotationProcessor "org.projectlombok:lombok:1.18.24"
2116

@@ -33,7 +28,24 @@ test {
3328
useJUnitPlatform()
3429
}
3530

36-
applicationDefaultJvmArgs = [ "-Djava.library.path=C:\\Qt\\6.3.2\\msvc2019_64\\bin" ]
31+
tasks.register('bundleQt') {
32+
def qtDir = layout.buildDirectory.dir('qt')
33+
outputs.dir qtDir
34+
doLast {
35+
//docs.get().asFile.mkdirs()
36+
//docs.get().file('readme.txt').asFile.write('Read me!')
37+
}
38+
}
39+
40+
distributions {
41+
main {
42+
contents {
43+
from 'qt'
44+
}
45+
}
46+
}
47+
48+
applicationDefaultJvmArgs = [ "-Djava.library.path=.;.\\bin;.\\src\\main\\resources\\qt\\bin" ]
3749
mainClassName = 'ru.futurelink.gerber.panelizer.Panelizer'
3850
sourceCompatibility = JavaVersion.VERSION_17
3951
targetCompatibility = JavaVersion.VERSION_17

qt/bin/Qt6Core.dll

5.39 MB
Binary file not shown.

qt/bin/Qt6Gui.dll

7.22 MB
Binary file not shown.

qt/bin/Qt6Network.dll

1.4 MB
Binary file not shown.

qt/bin/Qt6OpenGL.dll

1.84 MB
Binary file not shown.

qt/bin/Qt6Widgets.dll

5.74 MB
Binary file not shown.

qt/plugins/platforms/qdirect2d.dll

860 KB
Binary file not shown.

qt/plugins/platforms/qminimal.dll

55.9 KB
Binary file not shown.
103 KB
Binary file not shown.

qt/plugins/platforms/qwindows.dll

786 KB
Binary file not shown.

0 commit comments

Comments
 (0)