diff --git a/README.md b/README.md index a0212cf..96f1154 100644 --- a/README.md +++ b/README.md @@ -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: ``` diff --git a/conanfile.py b/conanfile.py index 8ec79e1..55fee92 100644 --- a/conanfile.py +++ b/conanfile.py @@ -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]")