This project is focused on managing Flights and Airports using different data structures and algorithms.
Project is created with:
- C++: 11
- Doxygen: 1.9.1
To build this project:
- Use Clion IDE to build the project or
- Manually build project into build folder:
cmake -DCMAKE_BUILD_TYPE=Release -S . -B build
cmake --build build/
To run this project:
- Go to release-build directory and execute the program:
# via clion
cd cmake-build-release
./aed_flight
# build manually
cd build
./aed_flight
Note that the project uses macros for clearing the screen, an execution in the command line would provide a better experience.