diff options
author | David Robillard <d@drobilla.net> | 2024-11-23 16:36:42 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-11-23 16:36:42 -0500 |
commit | 6fcd79be0c1d38eadabec9993e65725ce7bf600c (patch) | |
tree | 1b16ef0a16231cd1ca42cd8fd9d079746b3081c9 /README.md | |
parent | c8b2c46886888e53125f1027ef3ea96dc584bcaa (diff) | |
download | lv2-6fcd79be0c1d38eadabec9993e65725ce7bf600c.tar.xz |
Use angle brackets for library includes
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -37,12 +37,12 @@ Other projects may extend LV2, but must place their headers elsewhere. Headers are installed to `includedir` with paths like: - #include "lv2/urid/urid.h" + #include <lv2/urid/urid.h> For backwards compatibility, if the `old_headers` option is set, then headers are also installed to the older URI-based paths: - #include "lv2/lv2plug.in/ns/ext/urid/urid.h" + #include <lv2/lv2plug.in/ns/ext/urid/urid.h> Projects still using this style are encourated to migrate to the shorter style above. |