Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-09-01 | Merge pull request #1614 from fooishbar/cc-filter-args | Jussi Pakkanen | 5 | -5/+59 | |
Add Compiler.filter_arguments() | |||||
2017-08-31 | Alphabetize compiler.compiles() | Daniel Stone | 1 | -6/+6 | |
2017-08-31 | Add Compiler.get_supported_arguments() | Daniel Stone | 5 | -0/+54 | |
Add a helper for the common pattern of: args_to_use = [] foreach arg : candidate_args if cc.has_argument(arg) args_to_use += arg endif endforeach Replaced with: args_to_use = cc.get_supported_arguments(candidate_args) | |||||
2017-08-31 | Use include-uninstalled for internal gir deps. | Elliott Sales de Andrade | 2 | -1/+2 | |
This stops g-ir-scanner from trying to search for the pkg-config file for an internal gir, which won't be available. | |||||
2017-08-31 | Removed duplicate title in doc theme. | Tense_du | 1 | -1/+0 | |
2017-08-31 | Try to use 2x the number of cores. | Jussi Pakkanen | 1 | -0/+6 | |
2017-08-31 | modules/gnome.py: Use a filelist for generate_gir() | Chun-wei Fan | 1 | -4/+27 | |
On Windows, one will face the issue of the 8192-character limit for each command line, so this will cause an issue when one is building items like GTK+ with introspection, because the g-ir-scanner command line will likely get too long, which will clearly break the build. This will affect all Windows builds. Make use of the --filelist option that is already in g-ir-scanner, and generate such a file list from the sources that are fed to generate_gir(), named as $(builddir)/$(target_id)/<NameSpace>_<NameSpaceVersion>_gir_filelist and using it during the build. | |||||
2017-08-31 | add support for cups dependencies (#2255) | Iñigo MartĂnez | 7 | -2/+78 | |
* add support for cups dependencies libcups has its own cups-config tool rather than using pkg-config. This adds support for cups-config, based on pcap-config and sdl2-config implementations. This change also includes the unit test case and documentation for cups dependency object implementation, and libcups2 dep to CI image. | |||||
2017-08-29 | d: Newer GDC versions can compile shared libraries | Matthias Klumpp | 3 | -6/+15 | |
Actually, GDC supports shared libraries since version 6.2, but on Debian there are still issues with that version due to the standard library not being compiled with PIC. Therefore, we make a very conservative assumption here and only enable the tests for GDC >= 7.0 | |||||
2017-08-29 | trivial: Fix typos | Matthias Klumpp | 1 | -2/+2 | |
2017-08-29 | gnome: Ensure gir always works with asan, even if used together with ubsan | Matthias Klumpp | 1 | -1/+1 | |
This really resolves #1910 by making it also work in cases where asan and ubsan are used together via "-Db_sanitize=address,undefined". | |||||
2017-08-29 | gnome: Fix typo in gtkdoc_html_dir, so it returns the correct path | Matthias Klumpp | 2 | -2/+2 | |
2017-08-28 | Create a proper 64 bit installer with WiX. | Jussi Pakkanen | 1 | -4/+14 | |
2017-08-27 | Merge pull request #2196 from arteymix/patch-4 | Jussi Pakkanen | 2 | -2/+14 | |
python3: Fix 'sysconfig_path' for platform-dependant paths | |||||
2017-08-27 | Fix msi creation script to work on 64 bit Windows. | Jussi Pakkanen | 1 | -2/+5 | |
2017-08-26 | Merge pull request #2248 from thiblahute/csharp | Jussi Pakkanen | 6 | -1/+21 | |
Make cs_args a known argument and handle c# external dependencies | |||||
2017-08-26 | Rewrapped more files. | Jussi Pakkanen | 14 | -121/+440 | |
2017-08-25 | ciimage: Add glib-sharp2 to our docker image | Thibault Saunier | 1 | -0/+1 | |
2017-08-24 | csharp: Take into account project and global args | Thibault Saunier | 1 | -0/+2 | |
2017-08-24 | c#: Handle external dependencies from .pc files | Thibault Saunier | 4 | -1/+17 | |
2017-08-24 | interpreter: Make cs_args a known argument | Thibault Saunier | 1 | -0/+1 | |
Avoiding warning about it when it is a well known one. | |||||
2017-08-24 | Merge pull request #2243 from thiblahute/csharp | Jussi Pakkanen | 3 | -3/+28 | |
Patchset to allow using meson for gstreamer-sharp | |||||
2017-08-24 | Rewrapped some markdown files. | Jussi Pakkanen | 7 | -76/+294 | |
2017-08-24 | tests: Check that generated sources can be used in csharp targets | Thibault Saunier | 1 | -1/+11 | |
2017-08-23 | gnome: Fix g-ir-scanner linking args for all code paths | Thibault Saunier | 1 | -2/+8 | |
We were fixing them up only in the dependency code path and not in the InternalDependency one. Just make sure to do it once for all. | |||||
2017-08-23 | ninjabackend: Add support for generated csharp sources. | Thibault Saunier | 1 | -0/+9 | |
2017-08-23 | Check if Watcom version of cl exists in the path and avoid using it. (#2237) | William D. Jones | 1 | -0/+18 | |
2017-08-23 | Remove trailing spaces. | Philippe Payant | 1 | -1/+1 | |
2017-08-23 | Fix detection of MSVC 2008 version. | Philippe Payant | 1 | -3/+7 | |
2017-08-22 | A full example for using the conf object. Closes #2235. | Jussi Pakkanen | 1 | -0/+41 | |
2017-08-22 | Clarify immutability description. Closes #2234. | Jussi Pakkanen | 1 | -9/+27 | |
2017-08-22 | Do not use dot in doxygen even if it is installed so list of generated files â” | Jussi Pakkanen | 1 | -1/+5 | |
is always the same. | |||||
2017-08-21 | Merge pull request #2224 from mesonbuild/morealpha | Jussi Pakkanen | 16 | -512/+1691 | |
More doc alphabetisation | |||||
2017-08-21 | Wrapped and alphabetized the remaining modules. | Jussi Pakkanen | 7 | -34/+98 | |
2017-08-21 | Rewrapped and alphabetized the Gnome module. | Jussi Pakkanen | 1 | -83/+170 | |
2017-08-21 | Rewrapped lines of a few more files. | Jussi Pakkanen | 7 | -113/+491 | |
2017-08-21 | Rewrap the rest of reference manual. | Jussi Pakkanen | 1 | -84/+306 | |
2017-08-20 | The last of the alphabetization. | Jussi Pakkanen | 1 | -83/+275 | |
2017-08-20 | And a few more alphas. | Jussi Pakkanen | 1 | -64/+202 | |
2017-08-20 | More alphabetization. | Jussi Pakkanen | 1 | -47/+145 | |
2017-08-20 | Merge pull request #2163 from chetgurevitch/master | Jussi Pakkanen | 1 | -4/+5 | |
Don't error if build directory is already configured and update instructions | |||||
2017-08-20 | Add missing dependency of Boost Log to a Docker image | MichaĆ WikliĆski | 1 | -0/+1 | |
2017-08-20 | Find Boost dep when there is an extra lib to link | MichaĆ WikliĆski | 3 | -1/+33 | |
There are several components in Boost which must be linked with extra libraries. Boost Log is one of them and in special circumstances needs linking with boost_log_setup. http://www.boost.org/doc/libs/1_64_0/libs/log/doc/html/log/detailed/utilities.html#log.detailed.utilities.setup This fix covers the case when there is no source file corresponding to the additional library. | |||||
2017-08-20 | Remove leftover debug print statement in meson_install.py | GabrĂel ArthĂșr PĂ©tursson | 1 | -1/+1 | |
2017-08-20 | Put some keyword arguments into alphabetical order to improve readability. | Jussi Pakkanen | 1 | -22/+64 | |
2017-08-20 | Fix coverage target breakage and add a test for it. | Jussi Pakkanen | 3 | -1/+15 | |
2017-08-20 | Remove PHONY because Windows and OSX file systems are crap. Closes #2199. | Jussi Pakkanen | 3 | -6/+7 | |
2017-08-19 | Add warning about `sources` in declare_dependency | David Seifert | 1 | -0/+38 | |
2017-08-19 | docs: Clarify project() no longer requires a language | TingPing | 1 | -1/+1 | |
2017-08-18 | docs: fix typo | Mohammed Sadiq | 1 | -1/+1 | |