3

I am going to develop an application for android using the GEGL library of GIMP. I am using visual studio 10. how to build the plugin with visual studio? what are the steps? how to run a GIMP project and debug? I have also come across GIMPVS. please enlighten me about this.

Also, can anybody suggest any tutorial for developing APIs in C using GEGL library?

Joachim Sauer
  • 302,674
  • 57
  • 556
  • 614
Sayak
  • 339
  • 1
  • 6
  • 19

1 Answers1

3

You will need to be a bit more specific :)

When I compile GIMP plugins on windows, I simply download the libgimp headers and lib files from the gimp-win sourceforge project (they don't seem to be available for 2.6 though, try asking on the GIMP irc, download the gtk+ headers and libs from the gtk+ site, and compile as I would compile any other program.

I guess you can do the same for GEGL, although you'd probably have to compile gegl yourself since I don't remember seeing any gegl distribution for windows. In order to compile GEGL, you will need

  1. a mingw/msys environment
  2. Binaries and Development headers of Gtk+ and babl (You may have to compile babl yourself).

You can refer to the GEGL website for instructions about that. Again, more details on what you are trying to achieve would help :) You can refer to my website on the page about compiling gimp on windows, to find instructions which will help you compile gegl and friends on windows.

Ishtar
  • 11,542
  • 1
  • 25
  • 31
  • how to build the lib files for gegl? i am having the linking error. i have the .h files and also the .dll files from the GIMP directory. but how to get the .lib files? – Sayak May 18 '11 at 04:22