Files
gnatstudio/help/help.gpr
Boulanger a413c89114 GNATSAS support
- Remove switches like compiler-mode
- Separate Run in 2 phases: analyze and then report
- CPL is no longer supported, reuse part of it for GNATSAS
- Handle path not yet transitioned to GNATSAS
- Create Actions and menu for GNATSAS
- Only show Codepeer when GNATSAS is not available

eng/ide/gnatstudio#54

(cherry picked from commit 36079ee283)
2023-09-26 10:42:26 +00:00

24 lines
600 B
Plaintext

with "../code_analysis/code_analysis";
with "../kernel/kernel";
with "../shared";
project Help is
for Source_Dirs use ("src");
for Object_Dir use Shared'Object_Dir;
package Naming is
case Shared.OS is
when "Windows_NT" =>
for Implementation ("help_module.display_help")
use "help_module-display_help_win32.adb";
when "unix" | "osx" =>
for Implementation ("help_module.display_help")
use "help_module-display_help_unix.adb";
end case;
end Naming;
package Compiler renames Shared.Compiler;
end Help;