diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-23 16:04:56 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-23 16:04:56 +0000 |
commit | 99cee80e309db58d36732280e954d4c99f82ba36 (patch) | |
tree | c62fe30d2925bb9260d069e784a2e20d847cae3c /data/graphics | |
parent | 6ae4b3a7f49d168e14bbf70b66e1340b75b71d63 (diff) | |
download | mana-client-99cee80e309db58d36732280e954d4c99f82ba36.tar.gz mana-client-99cee80e309db58d36732280e954d4c99f82ba36.tar.bz2 mana-client-99cee80e309db58d36732280e954d4c99f82ba36.tar.xz mana-client-99cee80e309db58d36732280e954d4c99f82ba36.zip |
Removed database files, minimaps, items, monster sprites, maps and sounds from
the release. They will be released dynamically only.
Diffstat (limited to 'data/graphics')
-rw-r--r-- | data/graphics/CMakeLists.txt | 1 | ||||
-rw-r--r-- | data/graphics/Makefile.am | 2 | ||||
-rw-r--r-- | data/graphics/images/CMakeLists.txt | 14 | ||||
-rw-r--r-- | data/graphics/images/Makefile.am | 14 |
4 files changed, 5 insertions, 26 deletions
diff --git a/data/graphics/CMakeLists.txt b/data/graphics/CMakeLists.txt index c569e04f..0fa9a7be 100644 --- a/data/graphics/CMakeLists.txt +++ b/data/graphics/CMakeLists.txt @@ -1,5 +1,4 @@ ADD_SUBDIRECTORY(gui) ADD_SUBDIRECTORY(images) -ADD_SUBDIRECTORY(items) ADD_SUBDIRECTORY(sprites) ADD_SUBDIRECTORY(tiles) diff --git a/data/graphics/Makefile.am b/data/graphics/Makefile.am index 19e95869..43354894 100644 --- a/data/graphics/Makefile.am +++ b/data/graphics/Makefile.am @@ -1,2 +1,2 @@ -SUBDIRS = gui images items sprites tiles +SUBDIRS = gui images sprites tiles diff --git a/data/graphics/images/CMakeLists.txt b/data/graphics/images/CMakeLists.txt index 2566cf3d..1e1cf19f 100644 --- a/data/graphics/images/CMakeLists.txt +++ b/data/graphics/images/CMakeLists.txt @@ -1,18 +1,8 @@ ADD_SUBDIRECTORY(ambient) SET (FILES - error.png + error.png login_wallpaper.png - minimap_new_1-1.png - minimap_new_2-1.png - minimap_new_3-1.png - minimap_new_5-1.png - minimap_new_7-1.png - minimap_new_9-1.png - minimap_new_14-1.png - minimap_new_15-1.png - minimap_new_16-1.png - minimap_new_17-1.png ) -INSTALL(FILES ${FILES} DESTINATION ${DATA_DIR}/graphics/images)
\ No newline at end of file +INSTALL(FILES ${FILES} DESTINATION ${DATA_DIR}/graphics/images) diff --git a/data/graphics/images/Makefile.am b/data/graphics/images/Makefile.am index 00d9ed7e..be8593f6 100644 --- a/data/graphics/images/Makefile.am +++ b/data/graphics/images/Makefile.am @@ -4,17 +4,7 @@ imagesdir = $(pkgdatadir)/data/graphics/images images_DATA = \ error.png \ - login_wallpaper.png \ - minimap_new_1-1.png \ - minimap_new_2-1.png \ - minimap_new_3-1.png \ - minimap_new_5-1.png \ - minimap_new_7-1.png \ - minimap_new_9-1.png \ - minimap_new_14-1.png \ - minimap_new_15-1.png \ - minimap_new_16-1.png \ - minimap_new_17-1.png + login_wallpaper.png EXTRA_DIST = \ - $(images_DATA)
\ No newline at end of file + $(images_DATA) |