You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+30-28Lines changed: 30 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@
24
24
## Example view
25
25

26
26
27
-
## Description
27
+
## About project
28
28
Volbx is a graphical tool used for data manipulation written in C++/Qt. User can:
29
29
* load data - opens XLSX and ODS spreadsheet files,
30
30
* filter data - filters panel can be used to define data range on each column,
@@ -33,35 +33,37 @@ Volbx is a graphical tool used for data manipulation written in C++/Qt. User can
33
33
* order data - each column can be ordered ascending or descending,
34
34
* export data - selected set of data, together with linked plots, can be exported to XLSX spreadsheet file or CSV.
35
35
36
-
## History
37
36
The tool was originally created for real estate appraisal as it gives the possibility, for people working in that area, to estimate past, current and future value of analyzed properties. When project/start-up was dropped, I've decided to release a less specialized application as an open source project. Most advanced and dedicated for real estates functionalities were cut out, basic and intermediate ones stayed.
38
37
39
-
## Used tools and libs
40
-
| Tool | Windows | Lubuntu |
41
-
| --- | --- | --- |
42
-
| OS version | 10 22H2 | 22.04 |
43
-
| GCC | 11.2.0 | 11.3.0 |
44
-
| CMake | 3.25.0 | 3.25.0 |
45
-
| Git | 2.38.1 | 2.34.1 |
46
-
| Qt | 6.5.2 | 6.5.2 |
47
-
| Qt Creator | 10.0.2 | 10.0.2 |
48
-
| Qwt | 6.2 | 6.2 |
49
-
| QuaZip | 1.4 | 1.4 |
50
-
| Zlib | 1.3.1 | 1.3.1 |
51
-
| Eible | 1.2.0 | 1.2.0 |
52
-
| QwtBle | 1.2.0 | 1.2.0 |
53
-
| Wble | 1.2.0 | 1.2.0 |
54
-
55
-
## Compilation and installation
56
-
Use directly CMake or Qt Creator. CMake **should**:
**TIPS**: set `CMAKE_PREFIX_PATH` env variable (should point to Qt) and add `qmake` location to `PATH` variable (QWT building expects it).
38
+
## Getting Started
39
+
This section describes briefly how to setup the environment and build the project.
40
+
41
+
### Prerequisites
42
+
Qt in version 6.5 or greater, a C++ compiler with C++17 support as a minimum, and CMake 3.16+.
43
+
44
+
### Building
45
+
Clone and use CMake directly or via any IDE supporting it. CMake should:
46
+
- configure everything automatically,
47
+
- compile and create binaries.
48
+
49
+
As a result of compilation, binary for simulations and binary for testing should be created.
50
+
51
+
**TIP**: Remember to set properly the `CMAKE_PREFIX_PATH` env variable. It should have a Qt installation path to let CMake `find_package` command work.
52
+
53
+
**TIP**: Add `qmake` location to `PATH` variable as QWT building expects it.
0 commit comments