-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
44 lines (35 loc) · 1.62 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
(require 'leiningen.core.eval)
(def JVM-OPTS
{:common []
:macosx ["-XstartOnFirstThread" "-Djava.awt.headless=true"]
:linux []
:windows []})
(defn jvm-opts
"Return a complete vector of jvm-opts for the current os."
[] (let [os (leiningen.core.eval/get-os)]
(vec (set (concat (get JVM-OPTS :common)
(get JVM-OPTS os))))))
(defproject pucks "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"]
[scad-clj "0.5.4-SNAPSHOT"]
[org.clojure/core.logic "1.0.1"]
[org.clojure/algo.generic "0.1.3"]
[uncomplicate/neanderthal "0.45.0" :exclusions [org.jcuda/jcuda-natives, org.jcuda/jcublas-natives]]
[net.mikera/core.matrix "0.62.0"]
[org.clojure/math.combinatorics "0.1.6"]
[expresso "0.2.2"]
[same/ish "0.1.5"]
[cider/cider-nrepl "0.28.6"]
;; lwjgl
[org.lwjgl/lwjgl "3.3.1"]
[org.lwjgl/lwjgl-glfw "3.3.1"]
[org.lwjgl/lwjgl-opengl "3.3.1"]
[org.lwjgl/lwjgl "3.3.1" :classifier "natives-macos-arm64"]
[org.lwjgl/lwjgl-glfw "3.3.1" :classifier "natives-macos-arm64"]
[org.lwjgl/lwjgl-opengl "3.3.1" :classifier "natives-macos-arm64"]]
:repl-options {:init-ns pucks.core}
:jvm-opts ^:replace ~(jvm-opts))