760 B
760 B
Elemmire
Steps to build
- Install Conan>=2
conda install -c conda-forge conan
- Create a conan profile
conan profile detect --force
- To build the library locally:
- Install dependencies with conan
or for the debug version:conan install . --build=missing
conan install . --build=missing --profile=debug
- Build with meson
or for the debug version:cd build-realease conan build ..
cd build-debug conan build .. --profile=debug
- To create the package (i.e. build and install it in the conan cache
~/.conan2
)
conan create . --build=missing
or for the debug version:
conan create . --build=missing --profile=debug