mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-07-31 16:16:26 +00:00
- alire.toml rewritten to valid schema ([[depends-on]], real build-switch values); restrictions moved to gnat.adc - gnat.adc: project-wide Jorvik profile, No_Exceptions, No_Implicit_Dynamic_Code, SPARK_Mode On - mafiabot_core.gpr: source dirs, mains, global config pragmas - Engine: drop the caller-side precondition race on Transition_State; guard moved into the protected body with illegal transitions forcing Fault_Halt - Empty stubs (economy/sockets/exploits): drop Elaborate_Body so they no longer compile until implemented
22 lines
441 B
Plaintext
22 lines
441 B
Plaintext
with "config/mafiabot_core_config.gpr";
|
|
|
|
project Mafiabot_Core is
|
|
|
|
for Source_Dirs use
|
|
("src",
|
|
"src/core",
|
|
"src/daemons",
|
|
"src/network",
|
|
"src/payloads",
|
|
"config",
|
|
"tests");
|
|
for Object_Dir use "obj";
|
|
for Exec_Dir use "bin";
|
|
for Main use ("mafiabot.adb", "engine_tests.adb");
|
|
|
|
package Builder is
|
|
for Global_Configuration_Pragmas use "gnat.adc";
|
|
end Builder;
|
|
|
|
end Mafiabot_Core;
|