Files
gnatstudio/python/python.gpr
Emmanuel Briot 3d46dffe23 Remove our own gtkada/gtkada.gpr project (G706-003), and use the one
installed by GtkAda instead. This is so that we can also depend on gnatlib,
 which must be independent of GPS but must also depend on GtkAda (and not
 on GPS)
 This impacted several .gpr files, as well as Makefile.* since Makefile.gtkada
 was also removed
(gps/Makefile, gps/Makefile.gps): Change the way we depend on gnatlib, which
 is now built with library project files. gps/Makefile is used to indicate
 whether we want static (the default) or shared gnatlib libraries.


git-svn-id: svn+ssh://svn.eu/Dev/trunk/gps@113228 936e1b1b-40f2-da11-902a-00137254ae57
2007-07-06 12:33:33 +00:00

16 lines
299 B
Plaintext
Executable File

with "../shared";
with "../kernel/kernel";
with "gtkada";
with "../gnatlib/src/gnatlib";
project Python is
for Source_Dirs use ("src");
for Object_Dir use "obj";
for Languages use ("Ada", "C");
package Compiler renames Shared.Compiler;
package IDE renames Shared.IDE;
end Python;