From e9d90d617c9798b32dd53a6017a73f0ac09aa3ab Mon Sep 17 00:00:00 2001 From: ThePhD Date: Wed, 11 Dec 2013 13:26:54 -0500 Subject: [PATCH] Well, -llua5.2. At least it's more explicit. --- build.ninja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ninja b/build.ninja index 7d3b5df5..9ba43068 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" -L"/usr/lib/lua5.2" -llua +linkflags = -static -L"./lib" -llua5.2 rule compile command = $cxx -MMD -MF $out.d $cxxflags -c $in -o $out $incflags