blob: fe467d1db9186dab4b85d1fad9e6dce892f5bc30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
## Dependencies
Development builds of ZLUDA requires following dependencies:
* CMake
* Python 3
Additionally repository have to be clone with Git submodules initalized. If you cloned the repo without initalizing submodules, do this:
```
git submodule update --init --recursive
```
## Tests
Tests should be executed with `--workspace` option to test non-default targets:
```
cargo test --workspace
```
|