diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/CMakeLists.txt | 1 | ||||
-rw-r--r-- | data/Makefile.am | 2 | ||||
-rw-r--r-- | data/music/CMakeLists.txt | 5 | ||||
-rw-r--r-- | data/music/Makefile.am | 8 |
4 files changed, 15 insertions, 1 deletions
diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt index e6e536623..1fd6e8379 100644 --- a/data/CMakeLists.txt +++ b/data/CMakeLists.txt @@ -4,6 +4,7 @@ ADD_SUBDIRECTORY(fonts) ADD_SUBDIRECTORY(graphics) ADD_SUBDIRECTORY(help) ADD_SUBDIRECTORY(icons) +ADD_SUBDIRECTORY(music) ADD_SUBDIRECTORY(perserver) ADD_SUBDIRECTORY(sfx) ADD_SUBDIRECTORY(test) diff --git a/data/Makefile.am b/data/Makefile.am index 1291a85b0..794e67b8f 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -1,5 +1,5 @@ -SUBDIRS = evol fonts graphics help icons perserver sfx test themes tmw translations +SUBDIRS = evol fonts graphics help icons music perserver sfx test themes tmw translations EXTRA_DIST = CMakeLists.txt items.xsd diff --git a/data/music/CMakeLists.txt b/data/music/CMakeLists.txt new file mode 100644 index 000000000..d64d69823 --- /dev/null +++ b/data/music/CMakeLists.txt @@ -0,0 +1,5 @@ +SET(FILES + keprohm.ogg + ) + +INSTALL(FILES ${FILES} DESTINATION ${DATA_DIR}/music) diff --git a/data/music/Makefile.am b/data/music/Makefile.am new file mode 100644 index 000000000..999b2b344 --- /dev/null +++ b/data/music/Makefile.am @@ -0,0 +1,8 @@ + +musicdir = $(pkgdatadir)/data/music + +music_DATA = keprohm.ogg + +EXTRA_DIST = \ + $(music_DATA) \ + CMakeLists.txt |