-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
32 lines (28 loc) · 1.34 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(defproject raylib-clj "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.11.1"]
[cnuernber/dtype-next "10.002"]
;[net.java.dev.jna/jna "5.13.0"]
[org.suskalo/coffi "0.6.409"]
[camel-snake-kebab "0.4.3"]
]
:main ^:skip-aot raylib-clj.core
:target-path "target/%s"
:jvm-opts ["-Dclojure.compiler.direct-linking=true"
"--enable-preview"
;"--add-modules=jdk.incubator.foreign"
"--enable-native-access=ALL-UNNAMED"
"-Dforeign.restricted=permit"
"--add-opens" "java.base/java.lang=ALL-UNNAMED"
]
:profiles {:uberjar {:aot :all
:jvm-opts ["-Dclojure.compiler.direct-linking=true"
"--enable-preview"
;"--add-modules=jdk.incubator.foreign"
"--enable-native-access=ALL-UNNAMED"
"-Dforeign.restricted=permit"
"--add-opens" "java.base/java.lang=ALL-UNNAMED"
]}})