diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-04-15 00:42:09 +1200 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-04-15 00:42:09 +1200 |
commit | 63c26c318a60efd20485978624352befd5f6c5ee (patch) | |
tree | ce0e2185113349e2025d2cae8ec3e7c5b134fea7 | |
parent | f422ec5ac8102abb99a92d4742b4baa88130b75f (diff) |
Updated readme
-rw-r--r-- | readme.md | 51 | ||||
-rw-r--r-- | readme.txt | 32 |
2 files changed, 51 insertions, 32 deletions
diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..0733844 --- /dev/null +++ b/readme.md @@ -0,0 +1,51 @@ + +## Adapad + +A very basic text editor made more as a test program for the FLTKAda binding +than as anything to seriously use. Very similar to Notepad or Leafpad. + + + +#### Dependencies + +Build time: +<ul> + <li>FLTKAda</li> + <li>gcc</li> + <li>GNAT</li> + <li>GPRbuild</li> +</ul> + +Run time: +<ul> + <li>FLTKAda</li> +</ul> + + + +#### Building and Installation + +This repository is written to use the GNAT Project Manager build tools. To +build, use the following command + +`gprbuild adapad.gpr` + +There is a single build switch of `-Xbuild` which can have a value of `release` +(the default) or `debug`. + +If for some reason you want to install Adapad, use + +`gprinstall -p -m adapad.gpr` + +For further information on the build tools, consult the +[GPRbuild docs](https://docs.adacore.com/gprbuild-docs/html/gprbuild_ug.html). + + + +#### Credits and Licensing + +Written by Jedidiah Barber. + +Licensed under the Sunset License v1.0. For details see `license.txt`. + + diff --git a/readme.txt b/readme.txt deleted file mode 100644 index 752bd65..0000000 --- a/readme.txt +++ /dev/null @@ -1,32 +0,0 @@ - - -Dependencies: - - GNAT - - FLTK - - FLTK-Ada Binding - - - - -How to build/install: - -Both this repository and the FLTK-Ada binding are written to use the GNAT Project Manager build -tools. To build Adapad for testing purposes, use the following command - - gprbuild adapad.gpr - -And to install Adapad, use - - gprinstall -p --mode=usage adapad.gpr - - - - -For further information on the build tools, consult - - https://docs.adacore.com/gprbuild-docs/html/gprbuild_ug.html - - |