You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Matheo HERSAN 4ba92cc070
Added the interface
2 years ago
build Added the interface 2 years ago
docs added the structure of the project with the makefile and the script 2 years ago
src Added the interface 2 years ago
.gitignore Update '.gitignore' 2 years ago
README.md Update 'README.md' 2 years ago
Sujet.pdf ADD Sujet 2 years ago
build.sh fixed script bugs 2 years ago
makefile Better makefile and trying some things in build.sh 2 years ago
sae1 added the structure of the project with the makefile and the script 2 years ago

README.md

SAE_101

Guide pour lancer l'application

Prérequis

Assurez-vous d'avoir les éléments suivants installés sur votre système :

Étapes

  1. Cloner le dépôt Git :
    git clone https://codefirst.iut.uca.fr/git/yannis.doumir_fernandes/SAE_101.git
    cd SAE_101
    
  2. Exécuter le script de lancement :
    ./build.sh -rbuild
    

Cette commande nettoie, construit et exécute l'application.

  1. Optionnel - Mode Debug : Si vous souhaitez exécuter l'application en mode débogage, utilisez l'option -debug :
    ./build.sh -debug
    
  2. Optionnel - Nettoyer les fichiers générés : Pour nettoyer les fichiers générés (objets et exécutable), utilisez l'option -clean :
    ./build.sh -clean
    
  3. Exécuter l'application (après la construction) : Si vous avez déjà construit l'application et souhaitez simplement l'exécuter, utilisez l'option -run :
    ./build.sh -run
    

Notes

  • Assurez-vous que le script (build.sh) a les permissions d'exécution :
    chmod +x build.sh
    
  • Si vous ne spécifiez aucune option lors de l'exécution du script, il affichera un message d'erreur vous indiquant d'utiliser --help pour afficher l'aide :
    ./build.sh --help