mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-30 20:54:08 -06:00
49 lines
1.3 KiB
CMake
49 lines
1.3 KiB
CMake
ADD_SUBDIRECTORY(gnumeric)
|
|
|
|
SET (BUILD_CONFIG_SCM ${CMAKE_CURRENT_BINARY_DIR}/build-config.scm)
|
|
|
|
SET (scm_SCHEME_4
|
|
substring-search.scm
|
|
xml-generator.scm
|
|
)
|
|
|
|
configure_file(build-config.scm.in ${BUILD_CONFIG_SCM})
|
|
|
|
SET(GUILE_DEPENDS scm-core-utils scm-gnc-module)
|
|
|
|
SET(scm_SCHEME_0
|
|
fin.scm
|
|
string.scm
|
|
${BUILD_CONFIG_SCM}
|
|
substring-search.scm
|
|
xml-generator.scm
|
|
)
|
|
|
|
GNC_ADD_SCHEME_TARGETS(scm-scm-0 "${scm_SCHEME_0}" "" "" FALSE)
|
|
|
|
GNC_ADD_SCHEME_TARGETS(scm-scm-1 "printf.scm" gnucash "" FALSE)
|
|
|
|
GNC_ADD_SCHEME_TARGETS(scm-scm-2
|
|
main.scm
|
|
gnucash
|
|
"scm-scm-1;${GUILE_DEPENDS}" # requires printf.scm from scm-scm-1 and modules from GUILE_DEPENDS
|
|
FALSE
|
|
)
|
|
|
|
# depends on main.scm
|
|
GNC_ADD_SCHEME_TARGETS(scm-scm-3
|
|
price-quotes.scm
|
|
gnucash
|
|
"scm-scm-2;scm-scm-0" # depends on build_config.scm
|
|
FALSE)
|
|
|
|
ADD_CUSTOM_TARGET(scm-scm ALL DEPENDS scm-scm-3 scm-scm-2 scm-scm-1 scm-scm-0 scm-gnumeric)
|
|
|
|
INSTALL(FILES config DESTINATION ${CMAKE_INSTALL_FULL_SYSCONFDIR}/gnucash)
|
|
|
|
SET_LOCAL_DIST(scm_DIST_local config CMakeLists.txt fin.scm string.scm build-config.scm.in substring-search.scm
|
|
xml-generator.scm main.scm price-quotes.scm printf.scm ${scm_SCHEME_4})
|
|
SET(scm_DIST ${scm_DIST_local} ${scm_gnumeric_DIST} PARENT_SCOPE)
|
|
|
|
|