raw
smg_comms_genesis       1  -- S.MG, 2018
smg_comms_genesis 2 -- prototype implementation of S.MG communication protocol
smg_comms_genesis 3 -- http://trilema.com/2018/euloras-communication-protocol-restated/
smg_comms_genesis 4
smg_comms_genesis 5 project SMG_comms is
smg_comms_genesis 6 for Languages use ("Ada");
smg_comms_genesis 7
smg_comms_genesis 8 for Source_Dirs use ("src");
smg_comms_genesis 9 for Ignore_Source_Sub_Dirs use (".svn", ".git", "@*");
smg_comms_genesis 10
smg_comms_genesis 11 for Object_Dir use "obj";
smg_comms_genesis 12 for Exec_Dir use ".";
smg_comms_genesis 13
smg_comms_genesis 14 for Main use ("test_comms.adb");
smg_comms_genesis 15
smg_comms_genesis 16 package Builder is
smg_comms_genesis 17 for Executable ("test_comms.adb") use "test_comms";
smg_comms_genesis 18 end Builder;
smg_comms_genesis 19
smg_comms_genesis 20 package Compiler is
smg_comms_genesis 21 for Default_Switches ("Ada") use ("-O2");
smg_comms_genesis 22 end Compiler;
smg_comms_genesis 23
smg_comms_genesis 24 end SMG_comms;