Menu

Tree [034aef] master /
 History

HTTPS access


File Date Author Commit
 cross 2013-08-30 Jussi Pakkanen Jussi Pakkanen [6eb447] Fix ARM strip binary path.
 man 2014-06-04 Jussi Pakkanen Jussi Pakkanen [63a769] Bumped version number for release.
 test cases 2014-06-11 Jussi Pakkanen Jussi Pakkanen [73ca87] Can specify standalone command targets.
 tools 2014-06-13 Jussi Pakkanen Jussi Pakkanen [575ef2] Convert project name.
 .gitattributes 2014-06-07 Jussi Pakkanen Jussi Pakkanen [41f760] Created a git attributes file.
 .gitignore 2014-03-22 Jussi Pakkanen Jussi Pakkanen [3ce499] Ignore file grooming.
 COPYING 2012-12-23 Jussi Pakkanen Jussi Pakkanen [a428c9] Start of project.
 backends.py 2014-06-11 Jussi Pakkanen Jussi Pakkanen [73ca87] Can specify standalone command targets.
 build.py 2014-06-11 Jussi Pakkanen Jussi Pakkanen [73ca87] Can specify standalone command targets.
 commandrunner.py 2014-06-15 Jussi Pakkanen Jussi Pakkanen [034aef] Add in this file that I forgot.
 coredata.py 2014-06-11 Jussi Pakkanen Jussi Pakkanen [7c8cd8] Removed cppcheck target now that we have run ta...
 create_release.sh 2014-06-07 Jussi Pakkanen Jussi Pakkanen [32e67b] A script to create source tarballs.
 delwithsuffix.py 2013-03-24 Jussi Pakkanen Jussi Pakkanen [a05021] Helper app to delete files with a given suffix.
 dependencies.py 2014-05-12 Jussi Pakkanen Jussi Pakkanen [b50608] Put build dir in moc search path.
 depfixer.py 2013-11-17 Jussi Pakkanen Jussi Pakkanen [8ef713] Use env.
 environment.py 2014-06-11 Jussi Pakkanen Jussi Pakkanen [7c8cd8] Removed cppcheck target now that we have run ta...
 install_meson.py 2014-03-22 Jussi Pakkanen Jussi Pakkanen [9049c7] Fix installation.
 interpreter.py 2014-06-11 Jussi Pakkanen Jussi Pakkanen [73ca87] Can specify standalone command targets.
 meson.py 2014-06-01 Jussi Pakkanen Jussi Pakkanen [ac871d] OCD
 meson_install.py 2013-10-04 Jussi Pakkanen Jussi Pakkanen [bb36ee] Strip dev rpath on install.
 meson_test.py 2014-05-01 Jussi Pakkanen Jussi Pakkanen [0f9836] JSON test output is now one line per test case.
 mesonconf.py 2014-06-07 Jussi Pakkanen Jussi Pakkanen [365f52] Store build flags into coredata as it is persis...
 mesongui.py 2014-05-23 Jussi Pakkanen Jussi Pakkanen [03c685] Put in some frosting.
 mesonintrospect.py 2014-06-11 Jussi Pakkanen Jussi Pakkanen [0df73e] Introspect script understands runtargets.
 mesonmain.ui 2013-09-29 Jussi Pakkanen Jussi Pakkanen [6a338a] Display options in a form.
 mesonrunner.ui 2013-09-27 Jussi Pakkanen Jussi Pakkanen [369ff9] UI file for external program runner.
 mesonstart.ui 2013-09-29 Jussi Pakkanen Jussi Pakkanen [6e4fa8] Set up directories with launcher.
 mlog.py 2013-08-11 Jussi Pakkanen Jussi Pakkanen [cf212c] Added debug logging path.
 mparser.py 2014-05-26 Jussi Pakkanen Jussi Pakkanen [17ba9b] Parse function and method calls properly.
 ninjabackend.py 2014-06-11 Jussi Pakkanen Jussi Pakkanen [7c8cd8] Removed cppcheck target now that we have run ta...
 optinterpreter.py 2014-03-16 Jussi Pakkanen Jussi Pakkanen [2502be] The final renaming.
 readme.txt 2014-05-31 Jussi Pakkanen Jussi Pakkanen [5be785] Documentation fix from the Malta airport during...
 run_cross_test.py 2013-09-30 Jussi Pakkanen Jussi Pakkanen [c1853c] Can specify cross file as a command line argument.
 run_tests.py 2014-05-10 Jussi Pakkanen Jussi Pakkanen [576b0f] Print test skip.
 symbolextractor.py 2013-08-23 Jussi Pakkanen Jussi Pakkanen [653635] Updated symbolextractor to work with cross builds.
 vs2010backend.py 2014-03-31 Jussi Pakkanen Jussi Pakkanen [c33014] Some vs2010 fixes.
 xcodebackend.py 2014-04-02 Jussi Pakkanen Jussi Pakkanen [6304da] Some work on using prebuilt object files. Does ...

Read Me

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

Dependencies

Python 3.3: http://python.org
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.


Contact info

All questions should be sent to the mailing list:
https://lists.sourceforge.net/lists/listinfo/meson-devel
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.