Test library with conan and meson
Find a file
2023-03-17 18:25:15 +01:00
src added debug profile 2023-03-17 16:31:02 +01:00
.gitignore added debug profile 2023-03-17 16:31:02 +01:00
conanfile.py using a conanfile.py to call meson 2023-03-17 18:25:15 +01:00
debug added debug profile 2023-03-17 16:31:02 +01:00
meson.build initial commit, added basic build system with conan/meson, dependency on fftw3 2023-03-17 12:13:32 +01:00
README.md using a conanfile.py to call meson 2023-03-17 18:25:15 +01:00

Elemmire

Steps to build

  • Install Conan>=2
conda install -c conda-forge conan
  • Create a conan profile
conan profile detect --force
  • Install dependencies with conan
conan install . --build=missing
conan install . --build=missing --profile=debug
  • Build with meson
cd build
conan build .
conan build . --profile=debug