Test code with conan and meson, depending on elemmire
Find a file
2023-07-06 20:37:21 +02:00
src initial commit, conan/meson build system requiring Elemmire 2023-03-21 21:47:03 +01:00
.gitignore initial commit, conan/meson build system requiring Elemmire 2023-03-21 21:47:03 +01:00
conanfile.py introduced dependence on specific Elemmire commit 2023-07-06 20:37:21 +02:00
debug initial commit, conan/meson build system requiring Elemmire 2023-03-21 21:47:03 +01:00
meson.build initial commit, conan/meson build system requiring Elemmire 2023-03-21 21:47:03 +01:00
README.md introduced dependence on specific Elemmire commit 2023-07-06 20:37:21 +02:00

Niphredil

Steps to build

  • Install Conan>=2
conda install -c conda-forge conan
  • Create a conan profile
conan profile detect --force
  • To build the code 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-release ; conan build .. ; cd ..
    
    or for the debug version:
    cd build-debug ; conan build .. --profile=debug ; cd ..
    
  • Run the test executable:
    ./meson/niphredil