summaryrefslogtreecommitdiff
path: root/meson.build
Commit message (Collapse)AuthorAgeFilesLines
* build: Fix va_copy checkIñigo Martínez2020-06-181-1/+1
| | | | | | | There is a misplaced closing parenthesis in `va_copy` check that triggers a warning in meson. It has been fixed by placing it properly.
* Fix project licence to GPLJuan Pablo Ugarte2020-06-081-1/+1
| | | | While some parts of Glade are LGPL others are GPL making it GPL in practice.
* Python plugin: fix linking errorJuan Pablo Ugarte2020-06-051-1/+1
| | | | | | | Since pygobject 3.8 we need to link with python-3.8-embed to avoid missing symbols when loading the plugin. Fix compiler warning
* meson: library bumpAlberto Fanjul2020-05-071-2/+2
|
* Rolling 3.36.0Alberto Fanjul2020-05-061-1/+1
|
* meson: Activate enable-debug variablesAlberto Fanjul2019-08-041-0/+3
|
* build: Fix OSX support in mesonIñigo Martínez2019-07-021-0/+3
| | | | | This modifies meson to fix dylibs loading in OSX support following dde46cbd commit.
* build: Do not use a system variable only for WindowsIñigo Martínez2019-07-021-2/+2
| | | | | | | Glade is built in multiple systems and `Windows` is not the only system that needs specific commands. Change the `glade_windows` variable to hold the system value.
* Add GDK_VERSION_MIN_REQUIREDCorentin Noël2019-06-091-0/+1
| | | | It silences many warnings with GTK when we are supposed to use some deprecated methods by design
* build: Port to meson build systemIñigo Martínez2019-03-301-0/+200
meson is a build system focused on speed an ease of use, which helps speeding up the software development. meson build system has been added along with autotools.