meson/readme.txt

24 lines
771 B
Plaintext
Raw Normal View History

2013-02-04 01:08:54 +08:00
This is an experiment to examine what would be
the optimal syntax for a cross-platform build
system.
Dependencies: Python3 and Python-Ply
2013-02-04 01:27:08 +08:00
Running:
2013-02-18 03:11:50 +08:00
Meson requires that you have a source directory and a build directory
2013-02-04 01:27:08 +08:00
and that these two are different. In your source root must exist a file
2013-02-18 03:11:50 +08:00
called 'meson.build'. To generate the build system run this command:
2013-02-04 01:27:08 +08:00
2013-02-18 03:11:50 +08:00
meson.py <source directory> <build directory>
2013-02-04 01:27:08 +08:00
2013-02-18 03:11:50 +08:00
You can omit either of the two directories, and Meson will substitute
2013-02-04 01:27:08 +08:00
the current directory and autodetect what you mean. This mean that you
can do things like this:
2013-02-18 03:11:50 +08:00
cd source_root; mkdir build; cd build; meson.py ..
cd source_root; mkdir build; meson.py build
2013-02-04 01:27:08 +08:00
2013-02-23 19:26:50 +08:00
For questions contact the mailing list at
https://lists.sourceforge.net/lists/listinfo/meson-devel