~ubuntu-support-team/meson/+git/meson:optiontree

Last commit made on 2016-08-27
Get this branch:
git clone -b optiontree https://git.launchpad.net/~ubuntu-support-team/meson/+git/meson

Branch merges

Branch information

Name:
optiontree
Repository:
lp:~ubuntu-support-team/meson/+git/meson

Recent commits

9b0b3aa... by Jussi Pakkanen

Put subproject options in their own submenus.

68b0f9d... by Jussi Pakkanen

Expose all builtin options.

a29219d... by Jussi Pakkanen

Allow creation of tree structured menus.

7830cb6... by Nirbheek Chauhan

Add a new compiler object method: has_members (#723)

* Add a new compiler object method: has_members

Identical to 'cc.has_member', except that this takes multiple members
and all of them must exist else it returns false.

This is useful when you want to verify that a structure has all of
a given set of fields. Individually checking each member is horrifying.

* Fix typo in exceptions for has_member(s)

b7392bb... by Jussi Pakkanen

Merge pull request #696 from mesonbuild/depfile

Add support for dependency files in custom targets.

a2321b2... by Elliott Sales de Andrade

Flatten isinstance calls. (#715)

That is, isinstance(x, y) or isinstance(x, z) can be flattened with a
tuple to isinstance(x, (y, z)).

7cd6206... by Jussi Pakkanen

Check for embedded @OUTPUT@s in commands.

ae12656... by Elliott Sales de Andrade

Use global id instead of local for hg tag. (#710)

4e050c3... by Jussi Pakkanen

Merge pull request #712 from QuLogic/capturing-custom-target

Allow capturing command output of a custom target.

b775718... by Elliott Sales de Andrade

Echo stderr from captured command.

This helps with debugging if the command fails.