Skip to content

Commit 7ba5a9c

Browse files
authored
Removed meson build (#15)
1 parent e452304 commit 7ba5a9c

File tree

6 files changed

+8
-52
lines changed

6 files changed

+8
-52
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,13 @@ jobs:
2929
environment-file: dev-environment.yml
3030
cache-environment: true
3131

32-
- name: Build
32+
- name: Configure CMake
3333
run: |
34-
meson setup build
35-
cd build
36-
meson compile
34+
cmake -Bbuild -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX
35+
36+
- name: Build with CMake
37+
working-directory: build
38+
run: cmake --build . --parallel 8
3739

3840
- name: Smoke test
3941
working-directory: build
@@ -45,10 +47,3 @@ jobs:
4547
run: |
4648
pytest -v
4749
48-
- name: Configure CMake
49-
run: |
50-
cmake -Bbuild -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX
51-
52-
- name: Build with CMake
53-
working-directory: build
54-
run: cmake --build . --parallel 8

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ Developer's workflow using `micromamba` to manage the dependencies:
1313
```bash
1414
micromamba create -f dev-environment.yml
1515
micromamba activate git2cpp-dev
16-
meson setup build
16+
cmake -Bbuild $CMAKE_INSALL_PREFIX=$CONDA_PREFIX
1717
cd build
18-
meson compile
18+
make -j8
1919
```
2020

2121
The `git2cpp` executable can then be run, e.g. `./git2cpp -v`.

meson.build

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/meson.build

Lines changed: 0 additions & 7 deletions
This file was deleted.

src/subcommand/meson.build

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/wrapper/meson.build

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)