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
```
cd build-realease
conan build ..
cd build-release ; conan build .. ; cd ..
```
or for the debug version:
```
cd build-debug
conan build .. --profile=debug
cd build-debug ; conan build .. --profile=debug ; cd ..
```
* Run the test executable:
```

View file

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