aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-11-23 16:36:42 -0500
committerDavid Robillard <d@drobilla.net>2024-11-23 16:36:42 -0500
commit6fcd79be0c1d38eadabec9993e65725ce7bf600c (patch)
tree1b16ef0a16231cd1ca42cd8fd9d079746b3081c9 /README.md
parentc8b2c46886888e53125f1027ef3ea96dc584bcaa (diff)
downloadlv2-6fcd79be0c1d38eadabec9993e65725ce7bf600c.tar.xz
Use angle brackets for library includes
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index bbc7b63..d547ce2 100644
--- a/README.md
+++ b/README.md
@@ -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.