Go to file
Jussi Pakkanen 63d101674d Can create a subdirectory for projects whose zip files do not have one. 2015-05-31 12:58:50 +03:00
cross Some more cross tweaking. 2015-05-09 16:32:36 +03:00
data Moved rpm macros to a subdirectory to reduce clutter. 2015-03-23 18:20:42 +02:00
man Bump version number for release. 2015-05-23 21:29:30 +03:00
manual tests Made multiwrap use wrabdb where possible. 2015-05-29 21:34:05 +03:00
modules modules/rpm: add compiler deps for gcc, gcc-c++ 2015-05-23 16:28:24 +03:00
test cases Make extract_objects work with subdirectories. 2015-05-21 22:31:10 +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 backends: Add extra args after compiler.std_warn_args. 2015-05-29 22:13:59 +02:00
build.py Fixed gui app. 2015-05-03 15:06:04 +03:00
commandrunner.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
compilers.py add has_type method 2015-05-21 19:10:01 +03:00
contributing.txt Fix use of shared subprojects. 2015-04-08 23:32:31 +03:00
coredata.py Bump version number for new development. 2015-05-23 22:14:57 +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 Use -fPIC instead of -fPIE as it seems to be the new requirement. Closes #124. 2015-05-22 00:18:30 +03:00
depfixer.py When new rpath is empty, remove rpath defintion from the dynamic entry table too because an empty rpath is different from a nonexisting one and this causes problems when building rpms. Closes #110. 2015-05-14 16:54:08 +03:00
environment.py Can specify custom search directories in find_library. 2015-05-17 00:58:38 +03:00
install_meson.py Install introspect as a command and add a man page for it. 2015-03-23 18:40:26 +02:00
interpreter.py add has_type method 2015-05-21 19:10:01 +03:00
jjb-meson.yaml Provide jenkins-job-builder yaml for meson 2015-05-16 15:35:08 +03:00
meson.py introduce check python version in meson.py 2015-05-16 14:16:20 +03:00
meson_install.py Fix destdir for install targets. Closes #32. 2015-02-04 22:11:46 +02:00
meson_test.py Do not invoke linker via cmd /c on Windows. 2015-05-17 15:23:33 +03:00
mesonconf.py Renamed buildtype from "type" to "buildtype" for consistency. 2015-03-26 00:12:56 +02:00
mesongui.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
mesonintrospect.py Handle outputs in arrays in mesonintrospect. Closes #50. 2015-03-19 12:29:27 +02:00
mesonlib.py Pass gracefully if dpkg-architecture is not installed. 2015-05-10 01:42:59 +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 Handle then unary negation operator. 2015-05-09 19:52:10 +03:00
ninjabackend.py In Vala .vapi files are sort of headers that you must put on the command line. Make it so. 2015-05-17 19:24:02 +03:00
optinterpreter.py Better error messages for user options 2015-05-03 21:21:12 +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 Do not invoke linker via cmd /c on Windows. 2015-05-17 15:23:33 +03:00
rustrunner.py Harmonised copyright declarations. 2014-11-16 20:19:12 +02:00
symbolextractor.py User optparse in symbolextractor. 2015-03-02 17:02:26 +02: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 Some vs2010 fixes. 2015-04-22 16:57:52 +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
xcodebackend.py Deal with Files in xcode generator. 2015-04-26 02:51:25 +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