Skip to content
This repository has been archived by the owner on Oct 12, 2024. It is now read-only.

Latest commit

 

History

History
97 lines (66 loc) · 1.47 KB

README.md

File metadata and controls

97 lines (66 loc) · 1.47 KB

Student Scheduler (aed-schedule)

Table of contents

General info

The main purpose of this project is to manage schedules after they have been elaborated. The system includes various functionalities related to schedules, such as modifying, searching, viewing, sorting, listing, among others.

Technologies

Project is created with:

  • C++: 11
  • Doxygen: 1.9.1
  • Visual studio code: 1.83.1

Setup (via .zip file)

To run this project:

Then, we need to compile the project using CMAKE File:

  • For first compile generate a native build system into a build folder:
$ cmake -Bbuild .
  • Go to the build directory:
$ cd build
  • Compile/link the project:
$ cmake --build .
  • Execute it:
$ ./aed_schedule_project
  • To see documentation:
$ cd html
$ open index.html

Setup (via GitHub)

To run this project, clone it to your computer in a directory chosen by you:

$ git clone git@github.com:DGoiana/aed-schedule.git

Then, we need to compile the project using CMAKE File:

  • For first compile generate a native build system into a build folder:
$ cmake -Bbuild .
  • Go to the build directory:
$ cd build
  • Compile/link the project:
$ cmake --build .
  • Execute it:
$ ./aed_schedule_project
  • To see documentation:
$ cd html
$ open index.html