Skip to content

Create tax report for Canada using GIFI codes #2075

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: stable
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions gnucash/report/reports/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ set(reports_us_SCHEME
locale-specific/us/taxtxf.scm
)

set(reports_ca_SCHEME
locale-specific/ca/taxtxf.scm
)

set(reports_de_DE_SCHEME
locale-specific/de_DE/taxtxf.scm
)
Expand Down Expand Up @@ -145,6 +149,12 @@ gnc_add_scheme_targets(scm-reports-us
DEPENDS "${scm_rpt_locale_specific_GUILE_DEPENDS}"
MAKE_LINKS)

gnc_add_scheme_targets(scm-reports-ca
SOURCES "${reports_ca_SCHEME}"
OUTPUT_DIR "gnucash/reports/locale-specific/ca"
DEPENDS "${scm_rpt_locale_specific_GUILE_DEPENDS}"
MAKE_LINKS)

gnc_add_scheme_targets(scm-reports-de_DE
SOURCES "${reports_de_DE_SCHEME}"
OUTPUT_DIR "gnucash/reports/locale-specific/de_DE"
Expand All @@ -164,6 +174,7 @@ add_custom_target(scm-reports ALL DEPENDS
scm-reports-common
scm-rpt-reports
scm-reports-us
scm-reports-ca
scm-reports-de_DE)


Expand Down
Loading
Loading