diff options
author | Jed Barber <jjbarber@y7mail.com> | 2017-05-07 15:32:13 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2017-05-07 15:32:13 +1000 |
commit | a8a921e5d96482a03f8b14143e95bde77f2cc627 (patch) | |
tree | 313f53f1e973bc22ce0303e116fa8a030404085c | |
parent | 80cf3953e92d73eea756164dce6fcb771a3133aa (diff) |
Added provisional GNAT project file
-rw-r--r-- | notes.txt | 2 | ||||
-rw-r--r-- | stv.gpr | 27 |
2 files changed, 29 insertions, 0 deletions
@@ -10,6 +10,8 @@ Preference deduplication isn't worth it unless there exists some linear dedupe a future direction ---------------- +Replace Multi_Precision_Integers with own code, with consistent style and licensing + Util to list paper ids that fit specific criteria to doublecheck potential errors. Add proper tiebreaker handling. @@ -0,0 +1,27 @@ + + +project STV is + + + for Languages use ("Ada"); + + + for Source_Dirs use ("src/**"); + for Object_Dir use "build"; + for Exec_Dir use "bin"; + for Main use ("stv.adb"); + + + package Builder is + for Executable("stv.adb") use "stv"; + end Builder; + + + package Compiler is + for Default_Switches("Ada") use ("-gnaty4aAbcefhiklM99nprt"); + end Compiler; + + +end STV; + + |