- 论坛徽章:
- 0
|
Help!GTK编译问题!
On NT/2k/XP, it is possible to have nmake create temporary files containing the output from pkg-config, and use those in a nmake makefile like this:
foobar.exe: foobar.obj __gtk_libs.mak
cl -MD foobar.obj @__gtk_libs.mak
@del __gtk_libs.mak
foobar.obj: foobar.c __gtk_cflags.mak
cl -MD -c @__gtk_cflags.mak foobar.c
@del __gtk_cflags.mak
__gtk_cflags.mak:
pkg-config --msvc-syntax --cflags gtk+-2.0 >;$@
__gtk_libs.mak:
for /F "delims==" %i in ('pkg-config --msvc-syntax --libs gtk+-2.0') \
do echo /link %i >;$@
Note in the above makefile fragment that the __gtk_libs.mak file is created using the for /F syntax available only in the cmd.exe command interpreter on NT/2k/XP. These obscure acrobatics are needed because we want __gtk_libs.mak to contain a line that starts with /link, but pkg-config cannot output the /link flag itself as a cl command line might contain several invokations of pkg-config --libs. We cannot put the /link on the cl command line that links foobar.exe either, as cl then gets confused and runs the linker with a command file that on one line has @__gtk_libs.mak, and link.exe doesn't like that. Sigh.
相关链接
http://www.gimp.org/~tml/gimp/win32/downloads.html |
|