-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
executable file
·52 lines (32 loc) · 1.34 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
The software package "Firmy" is a small accounting implementation,
providing a basic interface for "double book-keeping".
It is published with the unilicense and hence is public domain.
Currently, the master contains a beta version.
Future release versions will be available as tags.
Cloning with submodules:
------------------------
Firmy requires the submodule "NALib"
1. Either clone Firmy with the following git command:
git clone --recursive https://XXXXXX/Firmy
2. Or write the following commands:
git clone https://XXXXXX/Firmy
cd Firmy
git submodule init
git submodule update
3. Open the provided project/solution file in the Firmy/proj folder.
It should compile and run without errors in XCode and VisualStudio.
Documentation:
--------------
- Can be found directly within the Firmy.h header file.
- See the provided examples for examples.
Contribute:
-----------
This project is open for people to contribute.
History:
--------
Firmy originally was created in 2011 by Tobias Stamm at the time he
founded his company Manderim GmbH. It served to do all financial
calculations concerning the company for the following 8 years.
Within those years, the code was enhanced and rewritten several times
and was translated from C++ to C. In 2019, the company did close down and
the code had been rewritten for a public domain release.