Skip to content

Commit

Permalink
Merge pull request #137 from mknoszlig/master
Browse files Browse the repository at this point in the history
Problem: project.clj wants to live at the root of a project.
  • Loading branch information
sappo committed Nov 1, 2014
2 parents a10be12 + 01041ba commit fae6432
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/zproto_codec_clj.gsl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
.global.java_source_path = "$(root_path)/java"
.global.source_path = "$(root_path)/clojure/src"
.global.test_path = "$(root_path)/clojure/test"
.output "project.clj"
.output "../project.clj"
;; =========================================================================
;; $(class.title:)
;;
Expand All @@ -33,9 +33,9 @@
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:java-source-paths ["$(java_source_path)"]
:source-paths ["$(source_path)"]
:test-paths ["$(test_path)"]
:java-source-paths ["$(string.defix (java_source_path, "../"))"]
:source-paths ["$(string.defix (source_path, "../"))"]
:test-paths ["$(string.defix (test_path, "../"))"]
:prep-tasks ["javac"]
:dependencies [[org.clojure/clojure "1.6.0"]
[junit/junit "4.11"]
Expand Down

0 comments on commit fae6432

Please sign in to comment.