mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-24 20:25:04 +00:00
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
|