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