git clone git@github.com:EpitechPromo2024/B-YEP-500-PAR-5-1-zia-diego.rojas.git
pip install conan
conan profile new default --detect
conan remote add bincrafters https://bincrafters.jfrog.io/artifactory/api/conan/public-conan
conan config set general.revisions_enabled=1
Using Makefile:
# to build the program
make
./zia
# to build the tests
make tests
./unit_tests
Using CMake:
# to build the program
conan install . -if build --build=missing
cmake . -B build/
cmake --build build/
./zia
# to build the tests
conan install . -if build_tests --build=missing
cmake . -B build_tests/ -DZIA_BUILD_TESTS=ON
cmake --build build_tests/
./unit_tests