blob: f9ba70b40d773b13cef34d320d1991056c674c3d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | -- Use this project file to compile the test program.
-- Copyright 2012 B. Persson, Bjorn@Rombobeorn.se
--
-- This project file is free software: you can redistribute it and/or modify it
-- under the terms of the GNU General Public License version 3, as published
-- by the Free Software Foundation.
with "system_log";
project Build_Test_System_Log is
   for Main use ("test_system_log");
   package Binder is
      for Default_Switches ("Ada") use ("-shared");
   end Binder;
end Build_Test_System_Log;
 |