Move accounts, checks and pixmaps into a data directory
At the same time move the art directory into contrib to unclutter the top level
@ -680,8 +680,7 @@ SET(SCHEME_INSTALLED_SOURCE_DIR ${CMAKE_INSTALL_PREFIX}/share/gnucash/scm)
|
||||
SET(SCHEME_INSTALLED_CACHE_DIR ${CMAKE_INSTALL_PREFIX}/lib/gnucash/scm/ccache/${GUILE_EFFECTIVE_VERSION})
|
||||
|
||||
# The subdirectories
|
||||
ADD_SUBDIRECTORY (accounts)
|
||||
ADD_SUBDIRECTORY (checks)
|
||||
ADD_SUBDIRECTORY (data)
|
||||
ADD_SUBDIRECTORY (doc)
|
||||
ADD_SUBDIRECTORY (lib)
|
||||
ADD_SUBDIRECTORY (macros)
|
||||
@ -725,7 +724,7 @@ SET_LOCAL_DIST(toplvl_DIST ${toplvl_DIST_local})
|
||||
# then uses a (SET ${foo_DIST} ${locals....} PARENT_SCOPE) command to report up. See the bottom of
|
||||
# libgnucash/app-utils/CMakeLists.txt for an example of this.
|
||||
|
||||
SET(ALL_DIST ${accounts_DIST} ${bindings_DIST} ${checks_DIST} ${cmake_DIST} ${common_DIST}
|
||||
SET(ALL_DIST ${bindings_DIST} ${cmake_DIST} ${common_DIST} ${data_DIST}
|
||||
${doc_DIST} ${gnucash_DIST} ${lib_DIST} ${libgnucash_DIST} ${macros_DIST} ${packaging_DIST}
|
||||
${po_DIST} ${test_templates_DIST} ${toplvl_DIST} ${util_DIST})
|
||||
|
||||
|
@ -3,7 +3,7 @@ if GNUCASH_ENABLE_GUI
|
||||
else
|
||||
GNUCASH_SUBDIR =
|
||||
endif
|
||||
SUBDIRS = . doc lib common libgnucash bindings ${GNUCASH_SUBDIR} packaging po accounts checks
|
||||
SUBDIRS = . doc lib common libgnucash bindings ${GNUCASH_SUBDIR} packaging po data
|
||||
|
||||
GNC_CTAGS_FILE = @GNC_CTAGS_FILE@
|
||||
GNC_ETAGS_FILE = @GNC_ETAGS_FILE@
|
||||
|
75
configure.ac
@ -1602,45 +1602,47 @@ AC_CONFIG_FILES(
|
||||
po/Makefile.in
|
||||
dnl # Makefiles
|
||||
Makefile
|
||||
accounts/Makefile
|
||||
accounts/C/Makefile
|
||||
accounts/cs/Makefile
|
||||
accounts/da/Makefile
|
||||
accounts/de_AT/Makefile
|
||||
accounts/de_CH/Makefile
|
||||
accounts/de_DE/Makefile
|
||||
accounts/el_GR/Makefile
|
||||
accounts/en_GB/Makefile
|
||||
accounts/es_ES/Makefile
|
||||
accounts/es_MX/Makefile
|
||||
accounts/fi_FI/Makefile
|
||||
accounts/fr_CA/Makefile
|
||||
accounts/fr_CH/Makefile
|
||||
accounts/fr_FR/Makefile
|
||||
accounts/hu_HU/Makefile
|
||||
accounts/it/Makefile
|
||||
accounts/ja/Makefile
|
||||
accounts/ko/Makefile
|
||||
accounts/lt/Makefile
|
||||
accounts/lv/Makefile
|
||||
accounts/nb/Makefile
|
||||
accounts/nl/Makefile
|
||||
accounts/pl/Makefile
|
||||
accounts/pt_BR/Makefile
|
||||
accounts/pt_PT/Makefile
|
||||
accounts/ru/Makefile
|
||||
accounts/sk/Makefile
|
||||
accounts/sv_AX/Makefile
|
||||
accounts/sv_FI/Makefile
|
||||
accounts/sv_SE/Makefile
|
||||
accounts/tr_TR/Makefile
|
||||
accounts/zh_CN/Makefile
|
||||
accounts/zh_HK/Makefile
|
||||
accounts/zh_TW/Makefile
|
||||
data/Makefile
|
||||
data/accounts/Makefile
|
||||
data/accounts/C/Makefile
|
||||
data/accounts/cs/Makefile
|
||||
data/accounts/da/Makefile
|
||||
data/accounts/de_AT/Makefile
|
||||
data/accounts/de_CH/Makefile
|
||||
data/accounts/de_DE/Makefile
|
||||
data/accounts/el_GR/Makefile
|
||||
data/accounts/en_GB/Makefile
|
||||
data/accounts/es_ES/Makefile
|
||||
data/accounts/es_MX/Makefile
|
||||
data/accounts/fi_FI/Makefile
|
||||
data/accounts/fr_CA/Makefile
|
||||
data/accounts/fr_CH/Makefile
|
||||
data/accounts/fr_FR/Makefile
|
||||
data/accounts/hu_HU/Makefile
|
||||
data/accounts/it/Makefile
|
||||
data/accounts/ja/Makefile
|
||||
data/accounts/ko/Makefile
|
||||
data/accounts/lt/Makefile
|
||||
data/accounts/lv/Makefile
|
||||
data/accounts/nb/Makefile
|
||||
data/accounts/nl/Makefile
|
||||
data/accounts/pl/Makefile
|
||||
data/accounts/pt_BR/Makefile
|
||||
data/accounts/pt_PT/Makefile
|
||||
data/accounts/ru/Makefile
|
||||
data/accounts/sk/Makefile
|
||||
data/accounts/sv_AX/Makefile
|
||||
data/accounts/sv_FI/Makefile
|
||||
data/accounts/sv_SE/Makefile
|
||||
data/accounts/tr_TR/Makefile
|
||||
data/accounts/zh_CN/Makefile
|
||||
data/accounts/zh_HK/Makefile
|
||||
data/accounts/zh_TW/Makefile
|
||||
data/checks/Makefile
|
||||
data/pixmaps/Makefile
|
||||
bindings/Makefile
|
||||
bindings/python/Makefile
|
||||
bindings/python/tests/Makefile
|
||||
checks/Makefile
|
||||
common/Makefile
|
||||
common/debug/Makefile
|
||||
common/debug/valgrind/Makefile
|
||||
@ -1742,7 +1744,6 @@ AC_CONFIG_FILES(
|
||||
libgnucash/gnc-module/test/mod-bar/Makefile
|
||||
libgnucash/gnc-module/test/mod-baz/Makefile
|
||||
libgnucash/gnc-module/test/misc-mods/Makefile
|
||||
libgnucash/pixmaps/Makefile
|
||||
libgnucash/quotes/Makefile
|
||||
libgnucash/scm/Makefile
|
||||
libgnucash/scm/gnumeric/Makefile
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
11
data/CMakeLists.txt
Normal file
@ -0,0 +1,11 @@
|
||||
# CMakeLists.txt for data/
|
||||
|
||||
# The subdirectories
|
||||
ADD_SUBDIRECTORY (accounts)
|
||||
ADD_SUBDIRECTORY (checks)
|
||||
ADD_SUBDIRECTORY (pixmaps)
|
||||
|
||||
SET_LOCAL_DIST(data_DIST_local CMakeLists.txt Makefile.am ${data_EXTRA_DIST})
|
||||
|
||||
SET(data_DIST ${data_DIST_local} ${accounts_DIST} ${checks_DIST}
|
||||
${pixmaps_DIST} PARENT_SCOPE)
|
4
data/Makefile.am
Normal file
@ -0,0 +1,4 @@
|
||||
SUBDIRS = \
|
||||
accounts \
|
||||
checks \
|
||||
pixmaps
|