You've already forked gnatstudio
mirror of
https://github.com/AdaCore/gnatstudio.git
synced 2026-02-12 12:42:33 -08:00
Fix DnD not opening files on windows See merge request eng/ide/gnatstudio!314 (cherry picked from commit34afcd8141)edee8a72Fix DnD not opening files on windows
28 lines
613 B
Plaintext
28 lines
613 B
Plaintext
-- The part of the kernel that depends on the GUI
|
|
with "gtkada";
|
|
with "kernel_core";
|
|
with "../shared";
|
|
with "../widgets/widgets";
|
|
with "../gnatcoll_extras/gnatcoll_extras";
|
|
with "../refactoring/core/refactoring_core";
|
|
with "../toolchains_editor/core/toolchains_core";
|
|
with "xmlada";
|
|
with "spawn_glib";
|
|
with "lsp";
|
|
|
|
project Kernel is
|
|
|
|
for Languages use ("Ada", "Python");
|
|
|
|
for Source_Dirs use ("src", "generated");
|
|
|
|
for Object_Dir use Shared'Object_Dir;
|
|
|
|
package Compiler renames Shared.Compiler;
|
|
|
|
package Naming is
|
|
for Implementation_Suffix ("Python") use ".py";
|
|
end Naming;
|
|
|
|
end Kernel;
|