Skip to content

Commit ae550e6

Browse files
consolodate config file
1 parent 62b1694 commit ae550e6

File tree

1 file changed

+11
-29
lines changed

1 file changed

+11
-29
lines changed

src/com/raylib/RaylibConfig.java

Lines changed: 11 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -8,64 +8,46 @@
88

99
@Properties(
1010
value = {
11-
1211
@Platform(
13-
value = {"windows-x86_64"},
14-
link = {"winmm", "OpenGL32","user32","shell32","gdi32","raylib"},
1512
include = {"raylib.h", "rlgl.h", "raymath.h", "physac.h", "raygui.h"},
1613
compiler = {"!default","foo"}
1714
),
15+
@Platform(
16+
value = {"windows-x86_64"},
17+
link = {"winmm", "OpenGL32","user32","shell32","gdi32","raylib"}
18+
),
1819
@Platform(
1920
value = {"windows-x86"},
20-
link = {"winmm", "OpenGL32","user32","shell32","gdi32","raylib"},
21-
include = {"raylib.h", "rlgl.h", "raymath.h", "physac.h", "raygui.h"},
22-
compiler = {"!default","foo"}
21+
link = {"winmm", "OpenGL32","user32","shell32","gdi32","raylib"}
2322
),
2423
@Platform(
2524
value = {"macosx-x86_64"},
26-
//linkpath = {"."},
27-
link = {"raylib"},
28-
//includepath = {"/Users/richard/IdeaProjects/jaylib"},
29-
include = {"raylib.h", "rlgl.h", "raymath.h", "physac.h", "raygui.h"},
30-
compiler = {"!default","foo"}
25+
link = {"raylib"}
3126
),
3227
@Platform(
3328
value = {"macosx-arm64"},
34-
//linkpath = {"."},
35-
link = {"raylib"},
36-
//includepath = {"/Users/richard/IdeaProjects/jaylib"},
37-
include = {"raylib.h", "rlgl.h", "raymath.h", "physac.h", "raygui.h"},
38-
compiler = {"!default","foo"}
29+
link = {"raylib"}
3930
),
4031
@Platform(
4132
value = {"linux-x86_64"},
4233
linkpath = {"/usr/lib/x86_64-linux-gnu"}, // "/home/richard/jaylib/lib/linux"
43-
link = {"X11", "raylib"},
44-
//includepath = {"/home/richard/jaylib"},
45-
include = {"raylib.h", "rlgl.h", "raymath.h", "physac.h", "raygui.h"},
46-
compiler = {"!default","foo"}
34+
link = {"X11", "raylib"}
4735
),
4836
@Platform(
4937
value = {"linux-arm64"},
5038
linkpath = {"/usr/lib/aarch64-linux-gnu/"},
51-
link = {"X11", "raylib"},
52-
//includepath = {"/home/richard/jaylib"},
53-
include = {"raylib.h", "rlgl.h", "raymath.h", "physac.h", "raygui.h"},
54-
compiler = {"!default","foo"}
39+
link = {"X11", "raylib"}
5540
),
5641
@Platform(
5742
value = {"linux-arm"},
5843
linkpath = {"/usr/lib/arm-linux-gnueabihf/"},
59-
link = {"X11", "raylib"},
60-
//includepath = {"/home/richard/jaylib"},
61-
include = {"raylib.h", "rlgl.h", "raymath.h", "physac.h", "raygui.h"},
62-
compiler = {"!default","foo"}
44+
link = {"X11", "raylib"}
6345
)},
6446

6547

6648

6749
target = "com.raylib.Raylib"
68-
//helper = "com.raylib.Colors"
50+
6951
)
7052
public class RaylibConfig implements InfoMapper {
7153

0 commit comments

Comments
 (0)