aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
AgeCommit message (Collapse)AuthorFilesLines
2021-05-28Split up meson build definitions moreDavid Robillard1-34/+6
2021-05-28Use files() almost everywhere in mesonDavid Robillard1-9/+9
2021-05-28Split up warning suppression flags more finelyDavid Robillard1-66/+3
This avoids polluting the main list of suppressions with things that are only triggered in tests or examples, making it clearer which warning are present in pugl itself.
2021-05-28Fix build when tests and examples are disabledDavid Robillard1-1/+2
2021-05-27Add test for building the implementation as included C++David Robillard1-4/+9
2021-05-27Make code build cleanly as C++David Robillard1-0/+3
2021-05-24Separate stub backends from other backendsDavid Robillard1-6/+4
Stub backends were a dependency of other backends to allow some code reuse. However, that can cause conflicting symbols if multiple backends are linked into the same binary, which should be possible. To avoid this, move the shared code into the platform implementation, and export those symbols so that backends can use them. This adds some semi-public platform-specific API that can only be used by backends included with pugl. They are undocumented, subject to change at any time without a corresponding version change, and may not be used by third parties (for example by custom backends in an application).
2021-05-24MacOS: Fix duplicate PuglStubView symbolDavid Robillard1-1/+1
2021-05-24Consistently refer to C++ as "cpp" and fix installationDavid Robillard1-10/+16
2021-03-10Fix warnings with VS2019David Robillard1-2/+4
2021-01-10Fix configuration summary when documentation is disabledDavid Robillard1-0/+2
2021-01-10Bump versionDavid Robillard1-1/+1
2021-01-10Show installation paths in configuration summaryDavid Robillard1-9/+18
2021-01-09Use strict warnings on CIDavid Robillard1-1/+3
2021-01-09Supress windows warning about exceptionsDavid Robillard1-0/+1
Shame to turn this off, but I don't know how to avoid it as MSVC apparently can't figure out that vkGetInstanceProcAddr is a C function that doesn't throw.
2021-01-08Switch to MesonDavid Robillard1-0/+439