Test library with conan and meson
Find a file
2023-03-21 21:17:21 +01:00
include packaged using conan create, added test_package 2023-03-21 21:17:21 +01:00
src packaged using conan create, added test_package 2023-03-21 21:17:21 +01:00
test_package packaged using conan create, added test_package 2023-03-21 21:17:21 +01:00
.gitignore added debug profile 2023-03-17 16:31:02 +01:00
conanfile.py packaged using conan create, added test_package 2023-03-21 21:17:21 +01:00
debug added debug profile 2023-03-17 16:31:02 +01:00
meson.build packaged using conan create, added test_package 2023-03-21 21:17:21 +01:00
README.md packaged using conan create, added test_package 2023-03-21 21:17:21 +01:00

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
    conan install . --build=missing
    
    or for the debug version:
    conan install . --build=missing --profile=debug
    
    • Build with meson
    cd build-realease
    conan build ..
    
    or for the debug version:
    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