Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 667 Bytes

HOWTO.md

File metadata and controls

42 lines (30 loc) · 667 Bytes

How to

How to get the sources

$ git clone https://github.com/zemasoft/wildcards
$ cd wildcards

How to build tests

$ cmake . -Bbuild -DCMAKE_BUILD_TYPE=Debug -DWILDCARDS_BUILD_TESTS=ON
$ cmake --build build

How to run the tests

$ cd build
$ ctest

How to build examples

$ cmake . -Bbuild -DCMAKE_BUILD_TYPE=Release -DWILDCARDS_BUILD_EXAMPLES=ON
$ cmake --build build

How to find the examples

$ ls build/example/example*

How to build all

$ cmake . -Bbuild -DCMAKE_BUILD_TYPE=Debug -DWILDCARDS_BUILD_TESTS=ON -DWILDCARDS_BUILD_EXAMPLES=ON
$ cmake --build build