[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: A very foolish question, pls don't laugh at me.
- From: Juan Pablo <xjuan_gq_nu yahoo com ar>
- To: GTK List <gtk-app-devel-list gnome org>
- Subject: Re: A very foolish question, pls don't laugh at me.
- Date: 07 May 2003 16:24:40 -0300
Hi, first of all I recommend you to develop the entire program on Linux
or any other Unix (they are real development environment ^_^) and then
compile it under wimblous.
To set up a GTK+-2.0 development environment on wincrosoft you can
download this exes or goto http://www.gimp.org/~tml/gimp/win32/ and
follow their instruction to use it with visual studio.
http://www.mingw.org
MinGW-2.0.0-3.exe //GCC compiler, etc...
MSYS-1.0.8-rc-3.exe //SH-compatible shell, make, etc...
http://www.muhri.net/nav.php3?node=gts
gtk2-runtime-2.2.1-050327-ash.exe //GTK2 dlls, themes, etc...
http://www.dropline.net/
GTK+-Development-Enviroment-2.2.1.1.exe //headers, libs, etc...
Add bin and lib directories to PATH and if you want to use MSYS
rename bin/pkg-config to real-pkg-config and copy the pkg-config script
I am sending you in the bin directory to make MSYS understand pkg-config
output
* pkg-config is a utility to output the libs and flags you should
include to compile a GTK program :)
and thats all...
chau
Juan Pablo
#!/bin/sh
if [ ! -n "$1" ]
then
argumento=""
else
argumento=$*
fi
pkg_output=`real-pkg-config $argumento`
echo ${pkg_output//"C:"/"/C"}
exit 0
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]