Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bensuperpc/cpp_abstractvm_2019
Epitech
https://github.com/bensuperpc/cpp_abstractvm_2019
epitech
Last synced: 4 days ago
JSON representation
Epitech
- Host: GitHub
- URL: https://github.com/bensuperpc/cpp_abstractvm_2019
- Owner: bensuperpc
- License: mit
- Created: 2021-11-05T11:14:45.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-05T11:44:26.000Z (about 3 years ago)
- Last Synced: 2024-10-31T13:07:30.268Z (about 2 months ago)
- Topics: epitech
- Language: C++
- Homepage:
- Size: 3.58 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AbstractVM
## Compilation
### Pour une compilation simple
Vous pouvez faire cette commande pour compiler le projet :```bash
make -j 8
```
### Pour une re-compilation
Vous pouvez faire cette commande pour compiler le projet :```bash
make re -j 8
```### Pour nettoyer les fichiers
```bash
make fclean
```### Pour une compilation pour les units_tests
#### units_tests uniquement
```bash
make fclean
make tests_run -j 8
```#### units_tests avec gcovr et sortie dans un fichier html
```bash
make fclean
make coverage_html_run -j 8
```#### units_tests avec gcovr pour le coverage uniquement
```bash
make fclean
make coverage_run -j 8
```#### units_tests avec gcovr pour les branch uniquement
```bash
make fclean
make branches_run -j 8
```## Contribution
Les contributions sont ouvertes :P## License
[MIT](https://choosealicense.com/licenses/mit/)