mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-23 09:26:27 -06:00
e8451ae1db
This is now an ordinary shared library * Remove test to load the gnc-module in scheme * Rewrite test to load the module in C to actually test something.
76 lines
2.3 KiB
CMake
76 lines
2.3 KiB
CMake
add_subdirectory(test)
|
|
|
|
set(locale_tax_SOURCES gnc-locale-tax.c gnc-locale-tax.h)
|
|
|
|
# Add dependency on config.h
|
|
set_source_files_properties (${locale_tax_SOURCES} PROPERTIES OBJECT_DEPENDS ${CONFIG_H})
|
|
|
|
add_library(gnc-locale-tax ${locale_tax_SOURCES})
|
|
target_link_libraries(gnc-locale-tax gnc-module ${GLIB2_LDFLAGS} ${GUILE_LDFLAGS})
|
|
|
|
target_include_directories(gnc-locale-tax
|
|
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
|
|
PRIVATE ${CMAKE_BINARY_DIR}/common ${GUILE_INCLUDE_DIRS})
|
|
|
|
if (APPLE)
|
|
set_target_properties (gnc-locale-tax PROPERTIES INSTALL_NAME_DIR "${CMAKE_INSTALL_FULL_LIBDIR}")
|
|
endif()
|
|
|
|
install(TARGETS gnc-locale-tax
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
# No headers to install
|
|
|
|
# Scheme
|
|
|
|
set(gncmod_tax_us_SCHEME_1 us/txf.scm us/txf-help.scm)
|
|
set(gncmod_tax_us_SCHEME_2 us/tax.scm)
|
|
|
|
set(gncmod_tax_de_DE_SCHEME_1 de_DE/txf.scm de_DE/txf-help.scm)
|
|
set(gncmod_tax_de_DE_SCHEME_2 de_DE/tax.scm)
|
|
|
|
set(GUILE_DEPENDS scm-app-utils scm-gnc-module)
|
|
|
|
gnc_add_scheme_targets(scm-tax-us-1
|
|
"${gncmod_tax_us_SCHEME_1}"
|
|
"gnucash/locale/us/tax"
|
|
"${GUILE_DEPENDS}"
|
|
TRUE
|
|
)
|
|
gnc_add_scheme_targets(scm-tax-us-2
|
|
"${gncmod_tax_us_SCHEME_2}"
|
|
"gnucash/locale/us"
|
|
"${GUILE_DEPENDS}"
|
|
FALSE
|
|
)
|
|
|
|
gnc_add_scheme_targets(scm-tax-de_DE-1
|
|
"${gncmod_tax_de_DE_SCHEME_1}"
|
|
"gnucash/locale/de_DE/tax"
|
|
"${GUILE_DEPENDS}"
|
|
TRUE
|
|
)
|
|
gnc_add_scheme_targets(scm-tax-de_DE-2
|
|
"${gncmod_tax_de_DE_SCHEME_2}"
|
|
"gnucash/locale/de_DE"
|
|
"${GUILE_DEPENDS}"
|
|
FALSE
|
|
)
|
|
|
|
# Module interfaces deprecated in 4.x, will be removed for 5.x
|
|
gnc_add_scheme_deprecated_module ("gnucash tax de_DE" "gnucash locale de_DE tax" "scm-tax-de_DE-2" "")
|
|
gnc_add_scheme_deprecated_module ("gnucash tax us" "gnucash locale us tax" "scm-tax-us-2" "")
|
|
|
|
add_custom_target(scm-locale-tax ALL DEPENDS scm-tax-us-1 scm-tax-us-2 scm-tax-de_DE-1 scm-tax-de_DE-2 )
|
|
|
|
set(de_DE_tax_EXTRA_DIST
|
|
"de_DE/taxtxf - LIES MICH.txt"
|
|
"de_DE/txf-USt-Bericht.html"
|
|
"de_DE/txf-USt-VA Anleitung 2011.pdf")
|
|
set_local_dist(tax_DIST_local CMakeLists.txt ${locale_tax_SOURCES}
|
|
${gncmod_tax_us_SCHEME_1} ${gncmod_tax_us_SCHEME_2}
|
|
${gncmod_tax_de_DE_SCHEME_1} ${gncmod_tax_de_DE_SCHEME_2}
|
|
${de_DE_tax_EXTRA_DIST})
|
|
set(tax_DIST ${tax_DIST_local} ${locale_tax_DIST} ${test_locale_tax_DIST} PARENT_SCOPE)
|