我在Ubuntu 1.04上使用lein 1.6.2,并创建了一个裸项目。我不知道为什么我得到了

“project.clj中没有列出:aot编译的 namespace 。”

输入lien编译时出错。

project.clj

(defproject amr_db "1.0.0-SNAPSHOT"
  :description "FIXME: write description"
  :dependencies [[org.clojure/clojure "1.3.0"]
                [korma "0.2.1"]])

core.clj(到目前为止)
(ns amr_db.core
  (:gen-class))

如何清除警告?

最佳答案

在您的project.clj中添加这样的一行

:main amr_db.core

如果编译的jar不是主要的,则您可能还需要类似的内容。
:aot [amr_db.core amr_db.another_example]

关于clojure - 为什么会收到 "No namespaces to :aot compile listed in project.clj."警告?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9102290/

10-11 01:01