Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-27 | MacOS: Use appleframeworks meson dependencies | Michael Fisher | 1 | -13/+7 | |
2022-11-24 | Use 0BSD for trivial "public domain intent" things | David Robillard | 1 | -1/+1 | |
2022-11-05 | Fix meson warnings on MacOS | David Robillard | 1 | -1/+1 | |
2022-10-07 | Fix MacOS build | David Robillard | 1 | -1/+1 | |
2022-10-07 | Suppress warnings from third-party and system includes | David Robillard | 1 | -8/+30 | |
2022-10-07 | Specify that native (build time) C++ support isn't required | David Robillard | 1 | -1/+1 | |
2022-10-07 | Override pkg-config dependencies within meson | David Robillard | 1 | -5/+23 | |
2022-10-07 | Clean up meson definitions | David Robillard | 1 | -86/+122 | |
2022-08-31 | Add include_directories to pugl_dep | Michael Fisher | 1 | -1/+3 | |
2022-06-28 | Clean up meson configuration | David Robillard | 1 | -6/+6 | |
2022-06-17 | Remove redundant assignment | David Robillard | 1 | -1/+0 | |
2022-06-08 | Separate private and public function implementations | David Robillard | 1 | -1/+6 | |
2022-06-03 | Fix Cairo warnings on MacOS | David Robillard | 1 | -0/+1 | |
2022-05-29 | Make meson configuration more modular | David Robillard | 1 | -133/+5 | |
2022-05-28 | Clean up and strengthen warning flags | David Robillard | 1 | -119/+197 | |
2022-05-23 | Add rich clipboard support | David Robillard | 1 | -2/+5 | |
This implements a more powerful protocol for working with clipboards, which supports datatype negotiation, and fixes various issues by mapping more directly to how things work on X11. | |||||
2022-05-21 | Rename PUGL_UNSUPPORTED_TYPE to be more generic | David Robillard | 1 | -1/+1 | |
2022-04-23 | Move reserved platform defines from code to build system | David Robillard | 1 | -1/+1 | |
Numerous things warn about this, and it's generally a bad idea to put these in the code since it can result in incompatibly compiled code being linked together. Unfortunately this makes building manually (without the build system) more fiddly, but such is life. | |||||
2022-04-23 | Suppress warnings when building with clang on Windows | David Robillard | 1 | -0/+7 | |
2022-04-23 | Build C++ components as C++14 | David Robillard | 1 | -1/+1 | |
2022-04-23 | Strengthen MSVC warnings | David Robillard | 1 | -3/+1 | |
2022-04-21 | Fix MacOS build | David Robillard | 1 | -0/+6 | |
2022-03-14 | Suppress warnings in MinGW | David Robillard | 1 | -0/+6 | |
2022-03-14 | Make C++ compiler optional | David Robillard | 1 | -2/+3 | |
2021-12-17 | Adopt REUSE machine-readable licensing standard | David Robillard | 1 | -0/+3 | |
See https://reuse.software/ for details. | |||||
2021-12-17 | Suppress new warnings in clang-tidy 13 | David Robillard | 1 | -0/+1 | |
2021-11-20 | Suppress warnings in GCC release builds | David Robillard | 1 | -0/+1 | |
2021-05-28 | Split up meson build definitions more | David Robillard | 1 | -34/+6 | |
2021-05-28 | Use files() almost everywhere in meson | David Robillard | 1 | -9/+9 | |
2021-05-28 | Split up warning suppression flags more finely | David Robillard | 1 | -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-28 | Fix build when tests and examples are disabled | David Robillard | 1 | -1/+2 | |
2021-05-27 | Add test for building the implementation as included C++ | David Robillard | 1 | -4/+9 | |
2021-05-27 | Make code build cleanly as C++ | David Robillard | 1 | -0/+3 | |
2021-05-24 | Separate stub backends from other backends | David Robillard | 1 | -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-24 | MacOS: Fix duplicate PuglStubView symbol | David Robillard | 1 | -1/+1 | |
2021-05-24 | Consistently refer to C++ as "cpp" and fix installation | David Robillard | 1 | -10/+16 | |
2021-03-10 | Fix warnings with VS2019 | David Robillard | 1 | -2/+4 | |
2021-01-10 | Fix configuration summary when documentation is disabled | David Robillard | 1 | -0/+2 | |
2021-01-10 | Bump version | David Robillard | 1 | -1/+1 | |
2021-01-10 | Show installation paths in configuration summary | David Robillard | 1 | -9/+18 | |
2021-01-09 | Use strict warnings on CI | David Robillard | 1 | -1/+3 | |
2021-01-09 | Supress windows warning about exceptions | David Robillard | 1 | -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-08 | Switch to Meson | David Robillard | 1 | -0/+439 | |