diff options
-rw-r--r-- | CMakeLists.txt | 16 | ||||
-rw-r--r-- | data/domain/book.oxm | 3 | ||||
-rw-r--r-- | data/domain/structure.oxm | 3 | ||||
-rw-r--r-- | data/typesystem/color.oxm | 3 | ||||
-rw-r--r-- | testdata/filesystem/a.txt | 1 | ||||
-rw-r--r-- | testdata/filesystem/b/c.txt | 1 | ||||
-rw-r--r-- | testdata/filesystem/b/d.txt | 1 |
7 files changed, 26 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 432dbcb..623ae7c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,8 +62,6 @@ IF(BUILD_DOCUMENTATION) WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Generating API documentation with Doxygen" VERBATIM) - - INSTALL(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html DESTINATION share/doc) ENDIF() @@ -290,3 +288,17 @@ IF(TEST) # ADD_TEST(ousia_test_mozjs ousia_test_mozjs) ENDIF() +################################################################################ +# Commands for building installing # +################################################################################ + +INSTALL(DIRECTORY data/ DESTINATION share/ousia + FILE_PERMISSIONS + OWNER_READ GROUP_READ WORLD_READ + OWNER_WRITE + DIRECTORY_PERMISSIONS + OWNER_READ GROUP_READ WORLD_READ + OWNER_WRITE + OWNER_EXECUTE GROUP_EXECUTE WORLD_EXECUTE +) + diff --git a/data/domain/book.oxm b/data/domain/book.oxm new file mode 100644 index 0000000..9659334 --- /dev/null +++ b/data/domain/book.oxm @@ -0,0 +1,3 @@ +<?xml version="1.0" standalone="yes"?> +<domain name="book"> +</domain> diff --git a/data/domain/structure.oxm b/data/domain/structure.oxm new file mode 100644 index 0000000..63d0c5c --- /dev/null +++ b/data/domain/structure.oxm @@ -0,0 +1,3 @@ +<?xml version="1.0" standalone="yes"?> +<domain name="structure"> +</domain> diff --git a/data/typesystem/color.oxm b/data/typesystem/color.oxm new file mode 100644 index 0000000..ef19c91 --- /dev/null +++ b/data/typesystem/color.oxm @@ -0,0 +1,3 @@ +<?xml version="1.0" standalone="yes"?> +<typesystem name="color"> +</typesystem> diff --git a/testdata/filesystem/a.txt b/testdata/filesystem/a.txt new file mode 100644 index 0000000..4ef30bb --- /dev/null +++ b/testdata/filesystem/a.txt @@ -0,0 +1 @@ +file a diff --git a/testdata/filesystem/b/c.txt b/testdata/filesystem/b/c.txt new file mode 100644 index 0000000..27c30ff --- /dev/null +++ b/testdata/filesystem/b/c.txt @@ -0,0 +1 @@ +file b/c diff --git a/testdata/filesystem/b/d.txt b/testdata/filesystem/b/d.txt new file mode 100644 index 0000000..3a71efe --- /dev/null +++ b/testdata/filesystem/b/d.txt @@ -0,0 +1 @@ +file b/d |