From 9204a019babc9efbd179bfeaeec264ca480ea34d Mon Sep 17 00:00:00 2001 From: ThePhD Date: Wed, 11 Dec 2013 13:22:05 -0500 Subject: [PATCH] Checking once more if we need additional library paths... --- build.ninja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ninja b/build.ninja index 5d707dc2..7d3b5df5 100644 --- a/build.ninja +++ b/build.ninja @@ -6,7 +6,7 @@ objdir = obj cxx = g++ cxxflags = -std=c++11 -pedantic -pedantic-errors -Wextra -Wall -O2 -DNDEBUG incflags = -I"." -I"./include" -I"." -I"/usr/include/lua5.2" -I"./lua-5.2.2/src/" -I"./Catch/include/" -linkflags = -static -L"./lib" -llua +linkflags = -static -L"./lib" -L"/usr/lib/lua5.2" -llua rule compile command = $cxx -MMD -MF $out.d $cxxflags -c $in -o $out $incflags