https://github.com/nderousseaux/tps-prog-avancee
Tps de l'UE de programmation avancée
https://github.com/nderousseaux/tps-prog-avancee
education master-siris tps ue-programmation-avancee
Last synced: 2 months ago
JSON representation
Tps de l'UE de programmation avancée
- Host: GitHub
- URL: https://github.com/nderousseaux/tps-prog-avancee
- Owner: nderousseaux
- Created: 2023-05-24T14:58:59.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-30T22:16:22.000Z (about 2 years ago)
- Last Synced: 2025-02-12T18:34:25.226Z (4 months ago)
- Topics: education, master-siris, tps, ue-programmation-avancee
- Language: Makefile
- Homepage:
- Size: 534 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Programmation avancée - Université de Strasbourg (M1) - TPs
This repo contains the correction of pratical works of the Programmation Avancée course.
## Compilation
We use CMake to configure and build the project.
To compile this projet, you might use the following:```bash
mkdir build
cd build
cmake -S ../ -B ./
cmake --build ./
```Alternatively, you can use `cmake --build ./ -j8` to enable cmake to use 8 cores for parallel compilation (change 8 to whatever the number of cores you want to use).