From 1eccbe4355685b322194df72b5de2382d5290b3b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 7 Jul 2022 18:59:32 -0400 Subject: Rearrange source tree to be directly usable by dependants This allows the LV2 source distribution to be used as an include path for compilers and an LV2_PATH for applications, at the expense of self-contained bundles. That's a nice idea, but it made LV2 itself weird and annoying to depend on. This rearranges things so that directories in the source tree correspond more closely to installation directories. To make this possible, the "aux" directory in the documentation output has been changed to "style", to avoid the reserved name "aux" on Windows. --- lv2/log/log.ttl | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 lv2/log/log.ttl (limited to 'lv2/log/log.ttl') diff --git a/lv2/log/log.ttl b/lv2/log/log.ttl deleted file mode 100644 index a8c4236..0000000 --- a/lv2/log/log.ttl +++ /dev/null @@ -1,49 +0,0 @@ -@prefix log: . -@prefix lv2: . -@prefix owl: . -@prefix rdf: . -@prefix rdfs: . -@prefix xsd: . - - - a owl:Ontology ; - rdfs:label "LV2 Log" ; - rdfs:comment "A feature for writing log messages." ; - rdfs:seeAlso , - ; - owl:imports . - -log:Entry - a rdfs:Class ; - rdfs:label "Entry" ; - rdfs:comment "A log entry." . - -log:Error - a rdfs:Class ; - rdfs:label "Error" ; - rdfs:subClassOf log:Entry ; - rdfs:comment "An error message." . - -log:Note - a rdfs:Class ; - rdfs:label "Note" ; - rdfs:subClassOf log:Entry ; - rdfs:comment "An informative message." . - -log:Warning - a rdfs:Class ; - rdfs:label "Warning" ; - rdfs:subClassOf log:Entry ; - rdfs:comment "A warning message." . - -log:Trace - a rdfs:Class ; - rdfs:label "Trace" ; - rdfs:subClassOf log:Entry ; - rdfs:comment "A debugging trace message." . - -log:log - a lv2:Feature ; - rdfs:label "log" ; - rdfs:comment "Logging feature." . - -- cgit v1.2.1