Skip to content

Commit 57b3774

Browse files
committed
Add :leex and :yecc to mix.exs
Fix warnings when compiling `.xrl` and `.yrl` files. ``` warning: in order to compile .xrl files, you must add "compilers: [:leex] ++ Mix.compilers()" to the "def project" section of couchdbtest's mix.exs warning: in order to compile .yrl files, you must add "compilers: [:yecc] ++ Mix.compilers()" to the "def project" section of couchdbtest's mix.exs ```
1 parent 0713b51 commit 57b3774

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ defmodule CouchDBTest.Mixfile do
5454
lockfile: Path.expand("mix.lock", __DIR__),
5555
deps_path: Path.expand("src", __DIR__),
5656
build_path: Path.expand("_build", __DIR__),
57-
compilers: [:elixir, :app],
57+
compilers: [:elixir, :app, :leex, :yecc],
5858
start_permanent: Mix.env() == :prod,
5959
build_embedded: Mix.env() == :prod,
6060
deps: deps(),

0 commit comments

Comments
 (0)