initial commit, conan/meson build system requiring Elemmire

This commit is contained in:
Florent Leclercq 2023-03-21 21:47:03 +01:00
commit deb6958958
6 changed files with 109 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
build*/

35
README.md Normal file
View file

@ -0,0 +1,35 @@
# 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-realease
conan build ..
```
or for the debug version:
```
cd build-debug
conan build .. --profile=debug
```
* Run the test executable:
```
./meson/niphredil
```

43
conanfile.py Normal file
View file

@ -0,0 +1,43 @@
import os.path
from conan import ConanFile
from conan.tools.meson import Meson
from conan.tools.layout import basic_layout
class NiphredilRecipe(ConanFile):
name = "niphredil"
version = "0.1"
# Optional metadata
license = "CECILL-2.1/GPL-3.0"
author = "The Aquila Consortium"
url = "https://bitbucket.org/aquila-consortium/niphredil"
description = "The Elemmire library"
topics = ("cosmology", "data analysis")
# Binary configuration
generators = "PkgConfigDeps", "MesonToolchain"
settings = "os", "compiler", "build_type", "arch"
options = {"shared": [True, False], "fPIC": [True, False]}
default_options = {"shared": False, "fPIC": True}
# Location of sources
exports_sources = "meson.build", "include/*", "src/*"
def requirements(self):
self.requires("elemmire/0.1")
def build_requirements(self):
self.tool_requires("meson/[~1.0]")
def layout(self):
basic_layout(self)
self.folders.build = os.path.join(self.folders.build, "meson")
def build(self):
meson = Meson(self)
meson.configure()
meson.build()
def package(self):
meson = Meson(self)
meson.install()

2
debug Normal file
View file

@ -0,0 +1,2 @@
[options]
build_type=Debug

6
meson.build Normal file
View file

@ -0,0 +1,6 @@
project('Niphredil', 'c',
version : '0.1',
default_options : ['warning_level=3'])
elemmire = dependency('elemmire', version : '0.1')
exe = executable('niphredil', 'src/main.c', dependencies: elemmire)

22
src/main.c Normal file
View file

@ -0,0 +1,22 @@
#include <stdio.h>
#include <elemmire.h>
#define PROJECT_NAME "Niphredil"
int main(int argc, char **argv) {
if(argc != 1) {
printf("%s takes no arguments.\n", argv[0]);
return 1;
}
printf("This is project %s.\n", PROJECT_NAME);
#ifdef NDEBUG
printf("%s has been compiled in 'Release' configuration.\n", PROJECT_NAME);
#else
printf("%s has been compiled in 'Debug' configuration.\n", PROJECT_NAME);
#endif
printf("%s depends on Elemmire:\n", PROJECT_NAME);
return elemmire(argc, argv);
}