Go to file
Nirbheek Chauhan 05547a44fc Add myself to authors.txt as required by the guide to contributing] 2016-02-17 14:49:26 +05:30
cross Added cpu family property to system information. 2015-10-18 01:08:04 +03:00
data rpm macros: export *FLAGS 2015-10-30 16:57:23 +01:00
graphics Logo tweaking. 2015-07-04 01:58:57 +03:00
man Updated versions for release. 2016-01-24 18:56:04 +02:00
manual tests Fix manual tests using host.name() 2015-10-13 14:56:05 +02:00
mesonbuild compilers: Don't pass /D for debugoptimized build type 2016-02-17 14:28:19 +05:30
test cases Guard against subdir segments in output files. 2016-02-14 18:54:12 +02:00
tools A few more checks for converter. 2015-11-20 12:33:09 +02:00
.gitattributes Created a git attributes file. 2014-06-07 15:03:40 +03:00
.gitignore Fix some issues that break pypi installs and bump version to upload new version. 2016-01-16 20:59:34 +02:00
COPYING Start of project. 2012-12-23 16:35:35 +02:00
MANIFEST.in Tweak setup.py includes. 2016-01-23 20:25:19 +02:00
authors.txt Add myself to authors.txt as required by the guide to contributing] 2016-02-17 14:49:26 +05:30
contributing.txt trivial: fix urls after repo migration 2015-06-16 14:55:14 +03:00
meson Renamed meson package to mesonbuild so that we can have a script named meson in the same toplevel dir. 2016-01-16 17:35:29 +02:00
mesonconf Renamed meson package to mesonbuild so that we can have a script named meson in the same toplevel dir. 2016-01-16 17:35:29 +02:00
mesongui Renamed meson package to mesonbuild so that we can have a script named meson in the same toplevel dir. 2016-01-16 17:35:29 +02:00
mesonintrospect Renamed meson package to mesonbuild so that we can have a script named meson in the same toplevel dir. 2016-01-16 17:35:29 +02:00
readme.txt Some text tweaks. 2016-01-16 20:29:53 +02:00
run_cross_test.py Renamed meson package to mesonbuild so that we can have a script named meson in the same toplevel dir. 2016-01-16 17:35:29 +02:00
run_tests.py Renamed meson package to mesonbuild so that we can have a script named meson in the same toplevel dir. 2016-01-16 17:35:29 +02:00
setup.py Tweak setup.py includes. 2016-01-23 20:25:19 +02:00
wraptool Fix wraptool. 2016-01-16 23:59:05 +02:00

readme.txt

Meson® is project to create the best possible next-generation
build system.


Dependencies

Python   http://python.org (version 3.4 or newer)
Ninja    http://martine.github.com/ninja/


Installing from source

You can run Meson directly from a revision control checkout or an
extracted tarball. Meson is also available from PyPi, so it can
be installed with 'pip install meson'.


Running

Meson requires that you have a source directory and a build directory
and that these two are different. In your source root must exist a file
called 'meson.build'. To generate the build system run this command:

meson <source directory> <build directory>

You can omit either of the two directories, and Meson will substitute
the current directory and autodetect what you mean. This allows you to
do things like this:

cd source_root; mkdir build; cd build; meson ..
cd source_root; mkdir build; meson build

To compile, cd into your build directory and type 'ninja'. To run unit
tests, type 'ninja test'.

Install is the same but it can take an extra argument:

DESTDIR=/destdir/path ninja install

DESTDIR can be omitted. If you are installing to system directories,
you may need to run this command with sudo.


Contributing

We love code contributions. See the contributing.txt file for
details.


IRC

The irc channel for Meson is #mesonbuild over at freenode.


Further info

The home page of Meson can be found here:

http://mesonbuild.com

Meson is a registered trademark of Jussi Pakkanen