summaryrefslogtreecommitdiff
path: root/cairommconfig.h.meson
AgeCommit message (Collapse)AuthorFilesLines
2021-03-09cairommconfig.h.*: Don't dllimport on MinGWChun-wei Fan1-1/+3
This will fix warnings when building items using cairomm with MinGW/GCC. Please see: https://gitlab.gnome.org/GNOME/gtkmm/-/issues/90
2020-05-05cairommconfig.h.[in|meson]: Add CAIROMM_APIChun-wei Fan1-0/+18
This macro can be used to decorate public class and API prototypes, so that we can use it to export symbols with compiler directives, such as __declspec(dllexport) in the case of Visual Studio-style builds. We can even decide to not use it by keeping CAIROMM_API empty, such as in the case of building static libraries or when using GCC's autoexporting mechanism.
2020-04-25Add support for building cairomm with MesonKjell Ahlstedt1-0/+21
cairomm can be built with either Autotools or Meson. Fixes #20