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:
parent
5aa1b738cf
commit
f13f7470eb
1 changed files with 12 additions and 0 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue