xcode compile options
Posted
by joels
on Stack Overflow
See other posts from Stack Overflow
or by joels
Published on 2010-04-25T05:55:16Z
Indexed on
2010/04/25
6:03 UTC
Read the original article
Hit count: 259
I am compiling from the command line with
gcc -o output-file $(mysql_config --cflags) main.c $(mysql_config --libs)
How can I add the extra params to xcode compiling options?
gcc -o output-file $(mysql_config --cflags) main.c $(mysql_config --libs)
© Stack Overflow or respective owner