Go to file
Jussi Pakkanen 22af56e05a More warnings by default. 2014-12-30 19:53:05 +02:00
cross Fix ARM strip binary path. 2013-08-31 01:05:35 +03:00
data Create simple Emacs major mode. 2014-11-24 23:58:44 +02:00
man Bump version number for release. 2014-10-24 04:58:41 +03:00
test cases Verify that option names do not have invalid characters. 2014-12-21 21:34:26 +02:00
tools Convert project name. 2014-06-14 00:39:15 +03:00
.gitattributes Created a git attributes file. 2014-06-07 15:03:40 +03:00
.gitignore Ignore file grooming. 2014-03-22 22:57:40 +02:00
COPYING Start of project. 2012-12-23 16:35:35 +02:00
authors.txt Add number, string and array arithmetic 2014-11-16 16:45:10 +00:00
backends.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
build.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
commandrunner.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
compilers.py More warnings by default. 2014-12-30 19:53:05 +02:00
contributing.txt Tests are fun. 2014-11-17 22:22:20 +02:00
coredata.py Add uppercase phony to forbidden target names. 2014-11-24 01:33:26 +02:00
create_release.sh A script to create source tarballs. 2014-06-07 15:08:06 +03:00
delwithsuffix.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
dependencies.py Print colorful thingies. 2014-12-18 00:58:25 +02:00
depfixer.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
environment.py Extracted compiler definitions to their own file. 2014-12-03 22:37:06 +02:00
install_meson.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
interpreter.py Verify that option names do not have invalid characters. 2014-12-21 21:34:26 +02:00
meson.py Extracted compiler definitions to their own file. 2014-12-03 22:37:06 +02:00
meson_install.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
meson_test.py Print message when no tests are defined. 2014-12-28 22:08:23 +02:00
mesonconf.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
mesongui.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
mesonintrospect.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
mesonlib.py Extracted compiler definitions to their own file. 2014-12-03 22:37:06 +02:00
mesonmain.ui Display options in a form. 2013-09-29 18:17:07 +03:00
mesonrunner.ui UI file for external program runner. 2013-09-27 22:12:55 +03:00
mesonstart.ui Set up directories with launcher. 2013-09-29 19:35:39 +03:00
mlog.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
mparser.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
ninjabackend.py Removed remnants of old debug funcs. 2014-12-22 17:55:30 +02:00
optinterpreter.py Verify that option names do not have invalid characters. 2014-12-21 21:34:26 +02:00
readme.txt Created a contribution info file. 2014-11-16 22:52:37 +02:00
run_cross_test.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
run_tests.py Extracted compiler definitions to their own file. 2014-12-03 22:37:06 +02:00
rustrunner.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
symbolextractor.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
vs2010backend.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
xcodebackend.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00

readme.txt

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


Dependencies

Python   http://python.org (version 3.3 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.  Installing it system-wide is simple.

Configure step: None
Compile step:   None
Unit test step: ./run_tests.py
Install step:   [sudo] ./install_meson.py --prefix /your/prefix --destdir /destdir/path

The default value of prefix is /usr/local. The default value of destdir
is empty. 


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 mean that you
can do things like this:

cd source_root; mkdir build; cd build; meson.py ..
cd source_root; mkdir build; meson.py 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.


Further info

The home page of Meson can be found here:

https://jpakkane.github.io/meson/

Meson is a registered trademark of Jussi Pakkanen