tags:

views:

64

answers:

1

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)

+1  A: 

Apple-I the project file, there is a section in build settings

Other C Flags Other linker flags

joels