Re: [gtk-list] gtk-config



The Mango <ahhohenstein@uswest.net> writes:

> Maybe someone can help me out.  I can run the gtk-config prog from the
> command line fine, but in something like, say:
> 
> gcc helloworld.c -o helloworld 'gtk-config --cflags --libs'

Use backticks, such as `gtk-config --cflags --libs`.  If you use a
ksh-variant shell, such as ksh or zsh or bash, you can also use the
somewhat clearer $(...) syntax, e.g.

    gcc helloworld.c $(gtk-config --cflags --libs)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]