XCode: Link with readline

Note: This may need to be done a little more robustly in order for the game to launch on older systems.
This commit is contained in:
Celtic Minstrel 2016-03-22 00:57:15 -04:00
parent 5aa1b738cf
commit f13f7470eb

View file

@ -5370,6 +5370,7 @@
"LOCALEDIR=\\\"translations\\\"",
"LUA_USE_MACOSX=1",
"HAVE_LIBPNG=1",
"HAVE_HISTORY=1",
);
GCC_VERSION = "";
HEADER_SEARCH_PATHS = "$(inherited)";
@ -5386,6 +5387,11 @@
"-isystem",
./Headers,
);
OTHER_LDFLAGS = (
"-lz",
"-lbz2",
"-lreadline",
);
PRODUCT_NAME = Wesnoth;
SDKROOT = "";
WARNING_CFLAGS = (
@ -5416,6 +5422,7 @@
"LOCALEDIR=\\\"translations\\\"",
"LUA_USE_MACOSX=1",
"HAVE_LIBPNG=1",
"HAVE_HISTORY=1",
);
GCC_VERSION = "";
GCC_WARN_UNUSED_VARIABLE = NO;
@ -5432,6 +5439,11 @@
"-isystem",
./Headers,
);
OTHER_LDFLAGS = (
"-lz",
"-lbz2",
"-lreadline",
);
PRODUCT_NAME = Wesnoth;
WARNING_CFLAGS = (
"-Werror=format",