diff options
| author | 0xNul <57599792+0xNul@users.noreply.github.com> | 2023-06-19 17:18:17 -0700 |
|---|---|---|
| committer | 0xNul <57599792+0xNul@users.noreply.github.com> | 2023-06-19 18:16:44 -0700 |
| commit | 33c18a89176dfff1d9f78eba1ad8a09fe5568880 (patch) | |
| tree | af37535ae7d10342466124f2d1a86cc2025715d0 /project.clj | |
| parent | bc1e4b592cabee6244a0b5b3321752a4ec87264b (diff) | |
inital release
Diffstat (limited to 'project.clj')
| -rw-r--r-- | project.clj | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/project.clj b/project.clj new file mode 100644 index 0000000..69a11d4 --- /dev/null +++ b/project.clj @@ -0,0 +1,12 @@ +(defproject votann "0.1.0" + :description "Votann is an informational program for creating your unit lists for Warhammer 40k" + :url "https://github.com/0xNul/votann" + :license {:name "GPL-3.0-or-later" + :url "https://www.gnu.org/licenses/gpl-3.0.en.html"} + :dependencies [[org.clojure/clojure "1.11.1"] + [cljfx "1.7.23"] + [org.openjfx/javafx-base "19"]] + :main ^:skip-aot votann.core + :target-path "target/%s" + :profiles {:uberjar {:aot :all + :jvm-opts ["-Dcljfx.skip-javafx-initialization=true"]}}) |