19 lines
268 B
Plaintext
19 lines
268 B
Plaintext
|
= test-data generator
|
||
|
|
||
|
This code generates output based on the S2 C++ library
|
||
|
|
||
|
[source,sh]
|
||
|
----
|
||
|
podman build -t s2-test-container .
|
||
|
podman run --rm -it -v "${PWD}:/Source/src" s2-test-container
|
||
|
----
|
||
|
|
||
|
In the container:
|
||
|
|
||
|
[source,sh]
|
||
|
----
|
||
|
cd build
|
||
|
cmake ..
|
||
|
make -j4
|
||
|
----
|