Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. (defproject csound-wasm "6.11.0-0"
  2. :description "Csound wasm with cljs api"
  3. :url "https://github.com/hlolli/csound-wasm"
  4. :license {:name "GNU GPL v3+"
  5. :url "http://www.gnu.org/licenses/gpl-3.0.en.html"}
  6. :source-paths ["src" "test"]
  7. :resource-paths ["libcsound"]
  8.  
  9. :scm {:name "git"
  10. :url "https://github.com/hlolli/csound-wasm"}
  11.  
  12. :dependencies [[org.clojure/clojure "1.9.0"]
  13. [org.clojure/clojurescript "1.10.339"
  14. :exclude [com.google.javascript/closure-compiler-unshaded]]
  15. [com.google.javascript/closure-compiler-unshaded "v20180805"]
  16. ]
  17.  
  18. :plugins [[lein-doo "0.1.10"]
  19. [lein-cljsbuild "1.1.7"]]
  20.  
  21. :cljsbuild
  22. {:builds
  23. {:test {:source-paths ["src" "test"]
  24. :compiler {:output-to "out/test-node.js"
  25. :target :nodejs
  26. :source-map true
  27. :language-in :es6
  28. :language-out :no-transpile
  29. :main csound-wasm.node-test
  30. :foreign-libs [{:file "libcsound/libcsound.js"
  31. :provides ["libcsound"]
  32. :module-type :commonjs}]
  33. :npm-deps {:speaker "0.4.1"
  34. :midi "0.9.5"
  35. :web-audio-api "0.2.2"
  36. "@cljs-oss/module-deps" "latest"
  37. :bufferutil "4.0.0"}
  38. :install-deps true
  39. :optimizations :none}}}})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement