ALIDOR Lilou ; COUARD Théo
- cmake (at least version 3.15)
- ** Linux ** : sudo apt install cmake
- ** Mac ** : brew install cmake
- ** Windows ** : https://cmake.org/install
- Doxygen
- ** Linux ** : sudo apt install doxygen
- ** Mac ** : brew install doxygen
- ** Windows ** : https://www.doxygen.nl/manual/install.html
To compile a project, first :
cd projectDirectory
mkdir build
cd build
cmake ..
makeThen each time you compile, from the same directory
makeIf you add some new files and / or edit the CMakeList.txt, redo :
cmake ..
makeOptional : if you want to install a lib
sudo make installOptional : if you want to generate the doc (in a separate folder)
cd projectDirectory
mkdir build-html
cd build-html
cmake ..
make
make htmlThe documentation is located in:
- [path to build]/doc/doc-doxygen/html/index.html or
- or [path to build]/INTERFACE/doc/doc-doxygen/html/index.html