26 lines
292 B
Markdown
26 lines
292 B
Markdown
|
# Argparse Tests
|
||
|
|
||
|
## Linux
|
||
|
|
||
|
```bash
|
||
|
$ mkdir build
|
||
|
$ cd build
|
||
|
$ cmake ../.
|
||
|
$ make
|
||
|
$ ./tests
|
||
|
```
|
||
|
|
||
|
## Windows
|
||
|
|
||
|
1. Generate Visual Studio solution
|
||
|
|
||
|
```bash
|
||
|
$ mkdir build
|
||
|
$ cd build
|
||
|
$ cmake ../. -G "Visual Studio 15 2017"
|
||
|
```
|
||
|
|
||
|
2. Open ARGPARSE.sln
|
||
|
3. Build tests in RELEASE | x64
|
||
|
4. Run tests.exe
|