Go to file
Jussi Pakkanen 1d4af5c84e Added test for declare_dependency. 2015-07-12 13:43:30 +03:00
cross Use cross file's pkgconfig binary when cross compiling. Closes #138. 2015-06-06 22:02:37 +03:00
data Moved rpm macros to a subdirectory to reduce clutter. 2015-03-23 18:20:42 +02:00
graphics Logo tweaking. 2015-07-04 01:58:57 +03:00
man Typo fix. 2015-07-06 21:03:22 +03:00
manual tests manual tests: add example for composite widgets 2015-07-02 12:19:40 +03:00
modules gnome:generate_gir: Parse "link_with" 2015-06-13 20:14:47 +02:00
test cases Added test for declare_dependency. 2015-07-12 13:43:30 +03: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 Made run_tests.py output test results in junit xml to allow better integration with CI tools. 2015-03-25 17:32:58 +02:00
COPYING Start of project. 2012-12-23 16:35:35 +02:00
authors.txt backends: Add extra args after compiler.std_warn_args. 2015-05-29 22:13:59 +02:00
backends.py Give top level targets unique private directories even if they share a basename with some other top level target. 2015-07-05 12:46:23 +03:00
build.py Can create top level targets that have the same name but different type. 2015-07-05 01:47:34 +03:00
commandrunner.py commandrunner: fix bad-continuation 2015-06-19 10:48:51 +03:00
compilers.py compilers: fix can_compile. Closes #189 2015-07-01 21:26:56 +03:00
contributing.txt trivial: fix urls after repo migration 2015-06-16 14:55:14 +03:00
coredata.py Get builtin options by correct name in subprojects. 2015-06-30 20:43:05 +03:00
create_release.sh Bump version number for release. 2015-03-31 01:00:48 +03:00
delwithsuffix.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
dependencies.py A few fixes to gl detection. 2015-07-12 02:11:44 +03:00
depfixer.py depfixer: Instance of XXX has no XXX member 2015-06-21 15:44:29 +03:00
environment.py environment: fix bad-continuation 2015-06-19 10:48:50 +03:00
install_meson.py Added man page for wraptool. 2015-07-06 20:53:02 +03:00
interpreter.py Can create top level targets that have the same name but different type. 2015-07-05 01:47:34 +03:00
meson.py style: fix indenting in meson.py 2015-06-18 22:06:01 +03:00
meson_install.py meson_install: fix bad-continuation 2015-06-19 10:48:50 +03:00
meson_test.py meson_test: fix bad-continuation 2015-06-19 10:48:50 +03:00
mesonconf.py Flipped one character. 2015-07-12 02:15:07 +03:00
mesongui.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
mesonintrospect.py mesonintrospect: fix bad-continuation 2015-06-19 10:48:50 +03:00
mesonlib.py Handle files() in Vala arguments and set up deps correctly. 2015-07-03 22:18:09 +03: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 Do not invoke linker via cmd /c on Windows. 2015-05-17 15:23:33 +03:00
mparser.py Give clear error message if someone tries to use double quotes. Closes #144. 2015-06-08 19:02:45 +03:00
ninjabackend.py Give top level targets unique private directories even if they share a basename with some other top level target. 2015-07-05 12:46:23 +03:00
optinterpreter.py Get builtin options by correct name in subprojects. 2015-06-30 20:43:05 +03:00
readme.txt Readme tweaking. 2015-05-04 22:10:37 +03:00
run_cross_test.py Fix cross compilation tests. 2015-05-09 16:17:20 +03:00
run_tests.py Merge pull request #162 from mesonbuild/lint_errors 2015-06-19 13:10:07 +03:00
rustrunner.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
symbolextractor.py symbolextractor: fix bad-continuation 2015-06-19 10:17:46 +03:00
vcstagger.py added support for optional custom command and replace_string parameter of vcs_tag 2015-02-11 03:27:40 +01:00
vs2010backend.py vs2010backend: fix bad-continuation 2015-06-19 10:16:38 +03:00
wrap.py Can create a subdirectory for projects whose zip files do not have one. 2015-05-31 12:58:50 +03:00
wraptool.py Use server side searches. 2015-07-07 00:25:32 +03:00
xcodebackend.py xcodebackend: Undefined variable 'MesonException' 2015-06-19 10:32:02 +03: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.  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 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