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
The repository now includes automated tooling to fetch and install the experimental Linux build of **tool4d** and its required dependencies. The `Makefile` handles everything for you.
4
+
5
+
## Quick start
6
+
7
+
```bash
8
+
make test
9
+
```
10
+
11
+
On the first run this will:
12
+
13
+
1. Install the libraries `libc++1`, `uuid-runtime`, `libfreeimage3`, `xdg-user-dirs`, `libtinfo5`, and `libncurses5` if they are missing.
14
+
2. Download and install the latest Linux `tool4d` package to `/opt/tool4d`.
15
+
3. Execute the project's test suite, automatically skipping tests tagged `no-linux`.
16
+
17
+
You can also bootstrap the environment without running the tests:
18
+
19
+
```bash
20
+
make tool4d
21
+
```
22
+
23
+
Once the setup has completed, subsequent invocations of `make test` reuse the installed tooling and run quickly.
24
+
25
+
## Manual installation
26
+
27
+
The steps above are sufficient for most scenarios. If you need to perform the setup manually (for example, in a container without `make`), the commands executed by the `Makefile` are:
0 commit comments