introduced dependence on specific Elemmire commit

This commit is contained in:
Florent Leclercq 2023-07-06 20:37:21 +02:00
parent 3452fddce0
commit 620cf78378
2 changed files with 4 additions and 5 deletions

View file

@ -21,13 +21,11 @@ conan profile detect --force
``` ```
* Build with meson * Build with meson
``` ```
cd build-realease cd build-release ; conan build .. ; cd ..
conan build ..
``` ```
or for the debug version: or for the debug version:
``` ```
cd build-debug cd build-debug ; conan build .. --profile=debug ; cd ..
conan build .. --profile=debug
``` ```
* Run the test executable: * Run the test executable:
``` ```

View file

@ -13,6 +13,7 @@ class NiphredilRecipe(ConanFile):
url = "https://bitbucket.org/aquila-consortium/niphredil" url = "https://bitbucket.org/aquila-consortium/niphredil"
description = "The Niphredil code" description = "The Niphredil code"
topics = ("cosmology", "data analysis") topics = ("cosmology", "data analysis")
revision_mode = "scm"
# Binary configuration # Binary configuration
generators = "PkgConfigDeps", "MesonToolchain" generators = "PkgConfigDeps", "MesonToolchain"
@ -24,7 +25,7 @@ class NiphredilRecipe(ConanFile):
exports_sources = "meson.build", "include/*", "src/*" exports_sources = "meson.build", "include/*", "src/*"
def requirements(self): def requirements(self):
self.requires("elemmire/0.1") self.requires("elemmire/0.1#d825d82a24735d1849ec5b7c0129ed905e67e634")
def build_requirements(self): def build_requirements(self):
self.tool_requires("meson/[~1.0]") self.tool_requires("meson/[~1.0]")