* python_module.adb

Move python initialization to GPS.Python_Core.

* python_core.gpr
Create Gtk free project for python scripting

* gps-cli.adb
Initialize python

For LB21_009


git-svn-id: svn+ssh://svn.eu.adacore.com/Dev/trunk/gps@202976 936e1b1b-40f2-da11-902a-00137254ae57
This commit is contained in:
Maxim Reznik
2013-02-21 16:34:08 +00:00
parent 5becc8e200
commit 249b9ebc40
9 changed files with 110 additions and 15 deletions

14
python/python_core.gpr Normal file
View File

@@ -0,0 +1,14 @@
with "../shared";
with "../kernel/kernel_core";
with "../gnatlib/src/gnatcoll";
project Python_Core is
for Source_Dirs use ("core");
for Object_Dir use Shared'Object_Dir;
for Languages use ("Ada");
package Compiler renames Shared.Compiler;
package IDE renames Shared.IDE;
end Python_Core;