You've already forked gnatstudio
mirror of
https://github.com/AdaCore/gnatstudio.git
synced 2026-02-12 12:42:33 -08:00
33 lines
924 B
Plaintext
33 lines
924 B
Plaintext
|
|
with "../common/common";
|
|
with "../kernel/kernel";
|
|
with "../completion/ui/completion_ui";
|
|
with "../vsearch/vsearch";
|
|
with "../widgets/widgets";
|
|
with "../aliases/aliases";
|
|
with "../shared";
|
|
|
|
project Src_Editor is
|
|
|
|
for Source_Dirs use ("src");
|
|
for Object_Dir use Shared'Object_Dir;
|
|
|
|
package Compiler renames Shared.Compiler;
|
|
|
|
package Naming is
|
|
case Shared.OS is
|
|
when "Windows_NT" =>
|
|
for Implementation ("src_printing.fabric") use
|
|
"src_printing-fabric__win32.adb";
|
|
for Implementation ("src_printing.win32_printer") use
|
|
"src_printing-win32_printer.adb";
|
|
when "unix" | "osx" =>
|
|
for Implementation ("src_printing.fabric") use
|
|
"src_printing-fabric__default.adb";
|
|
for Implementation ("src_printing.win32_printer") use
|
|
"src_printing-dummy.adb";
|
|
end case;
|
|
end Naming;
|
|
|
|
end Src_Editor;
|