summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-08-19 03:28:43 +0000
committerEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-08-19 03:28:43 +0000
commitf80d2227ae18896cb91fd0036804d8bbe27d4d45 (patch)
tree94a767bb5d5f7ac27bd9dee2278caba736152e6c
parent1b3d00f78e933cb828c4b499010b82d74334a971 (diff)
Added ENABLE_DCMI cmake option to disable installation of DCMI ontologies due to licensing concerns in
-rw-r--r--CMakeLists.txt11
1 files changed, 8 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b62f262..069d106 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -48,9 +48,14 @@ endmacro(INSTALL_ONTOLOGY)
48# base ontologies 48# base ontologies
49install_ontology(base/rdf core) 49install_ontology(base/rdf core)
50install_ontology(base/rdfs core) 50install_ontology(base/rdfs core)
51install_ontology(base/dcterms dc) 51
52install_ontology(base/dctype dc) 52option(ENABLE_DCMI
53install_ontology(base/dces dc) 53 "enable DCMI ontologies. This installs DCMI ontologies (http://dublincore.org/)." ON)
54if(ENABLE_DCMI)
55 install_ontology(base/dcterms dc)
56 install_ontology(base/dctype dc)
57 install_ontology(base/dces dc)
58endif(ENABLE_DCMI)
54 59
55# Nepomuk base ontologies 60# Nepomuk base ontologies
56install_ontology(nrl/nrl nepomuk) 61install_ontology(nrl/nrl nepomuk)