From 15938d0790afa70ecbe48cdf24799d7ebaaf9f7c Mon Sep 17 00:00:00 2001 From: John Ralls Date: Mon, 8 Jun 2020 13:14:20 -0700 Subject: [PATCH] Improve comments explaining exposed generators. --- gnucash/report/reports/CMakeLists.txt | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gnucash/report/reports/CMakeLists.txt b/gnucash/report/reports/CMakeLists.txt index ad0a66fac5..dd69a8e3d9 100644 --- a/gnucash/report/reports/CMakeLists.txt +++ b/gnucash/report/reports/CMakeLists.txt @@ -2,17 +2,14 @@ add_subdirectory(standard/test) add_subdirectory(support) +#These provide some functions used by more than one report. set (reports_common_SCHEME aging.scm cash-flow-calc.scm ) # The 'with exposed generator' reports are standard reports that can -# be created with a special generator function -# This function is exposed via reports.scm. -# As such these reports should be built before reports.scm -# However all other reports need to be built after reports.scm -# as they in turn may consume these generators. +# be created with a special generator function, exported by reports.scm set (reports_standard_with_exposed_generator_SCHEME standard/new-aging.scm standard/register.scm @@ -58,6 +55,8 @@ set (reports_standard_SCHEME standard/balsheet-eg.scm ) +# Reports depending on one of the generator functions from +# scm-reports-standard-with-exposed-generator: set (reports_standard_SCHEME_2 standard/customer-summary.scm # Depends on gnc:owner-report-create )