Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/clementfarabet/lua---nnx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoumith Chintala <soumith@gmail.com>2016-02-11 19:46:35 +0300
committerSoumith Chintala <soumith@gmail.com>2016-02-11 19:46:35 +0300
commitca6a86bc50c2f34853ca2435b2616e3c75cfacab (patch)
treebe6795e1a3577efd36face39e8eb9abf17b5c984
parentf9ce3b8f1134baae0b7172c08b0a251bd352f19f (diff)
parent83f4a60521bb815df33c6a8198aa69a467c63780 (diff)
Merge pull request #50 from borisfom/master
Propagating Lua vars
-rw-r--r--nnx-0.1-1.rockspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/nnx-0.1-1.rockspec b/nnx-0.1-1.rockspec
index 8e5ff20..a2c9613 100644
--- a/nnx-0.1-1.rockspec
+++ b/nnx-0.1-1.rockspec
@@ -23,7 +23,7 @@ dependencies = {
build = {
type = "command",
build_command = [[
-cmake -E make_directory build && cd build && cmake .. -DLUALIB=$(LUALIB) -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$(LUA_BINDIR)/.." -DCMAKE_INSTALL_PREFIX="$(PREFIX)" && $(MAKE)
+cmake -E make_directory build && cd build && cmake .. -DLUALIB=$(LUALIB) -DLUA_INCDIR="$(LUA_INCDIR)" -DLUA_LIBDIR="$(LUA_LIBDIR)" -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$(LUA_BINDIR)/.." -DCMAKE_INSTALL_PREFIX="$(PREFIX)" && $(MAKE)
]],
install_command = "cd build && $(MAKE) install"
}