Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Port to meson #58

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
CMakeCache.txt
CMakeFiles
Makefile
cmake_install.cmake
install_manifest.txt
build/
.bzr
build/
129 changes: 0 additions & 129 deletions CMakeLists.txt

This file was deleted.

17 changes: 5 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,24 +31,17 @@ If you want to hack on and build Tomato yourself, you'll need the following depe
- libcanberra
- libunity

Create a `build` directory
Use `meson` to configure the build environment and run `ninja` to build

```shell
mkdir build
cd build
meson build --prefix=/usr
ninja -C build
```

Use `cmake` to configure the build environment and run `make` to build
To install, use `ninja -C build install`, then execute with `com.github.tomatoers.tomato`

```shell
cmake -DCMAKE_INSTALL_PREFIX=/usr ../
make
```

To install, use `make install`, then execute with `com.github.tomatoers.tomato`

```shell
sudo make install
sudo ninja -C build install
com.github.tomatoers.tomato
```

Expand Down
56 changes: 0 additions & 56 deletions cmake/FindGirCompiler.cmake

This file was deleted.

65 changes: 0 additions & 65 deletions cmake/FindVala.cmake

This file was deleted.

34 changes: 0 additions & 34 deletions cmake/GObjectIntrospectionMacros.cmake

This file was deleted.

67 changes: 0 additions & 67 deletions cmake/GResource.cmake

This file was deleted.

Loading