You've already forked gnatstudio
mirror of
https://github.com/AdaCore/gnatstudio.git
synced 2026-02-12 12:42:33 -08:00
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
16 lines
299 B
Plaintext
Executable File
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;
|