You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
431 B
10 lines
431 B
(defproject rustint "0.1.0-SNAPSHOT"
|
|
:description "Interprete de Rust"
|
|
:url "https://github.com/CrossNox/7514-rust-interpreter-in-clojure"
|
|
:license {:name "MIT"
|
|
:url "https://mit-license.org"}
|
|
:dependencies [[org.clojure/clojure "1.11.1"]]
|
|
:main ^:skip-aot rustint.core
|
|
:target-path "target/%s"
|
|
:profiles {:uberjar {:aot :all
|
|
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}})
|
|
|