diff options
Diffstat (limited to 'data/music')
-rw-r--r-- | data/music/CMakeLists.txt | 5 | ||||
-rw-r--r-- | data/music/Makefile.am | 8 |
2 files changed, 13 insertions, 0 deletions
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 |