mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
572 B
19 lines
572 B
# CMakeLists.txt for libgnucash/
|
|
|
|
# The subdirectories
|
|
add_subdirectory (app-utils)
|
|
add_subdirectory (backend)
|
|
add_subdirectory (core-utils)
|
|
add_subdirectory (engine)
|
|
add_subdirectory (gnc-module)
|
|
add_subdirectory (quotes)
|
|
add_subdirectory (tax)
|
|
|
|
add_definitions (-DHAVE_CONFIG_H)
|
|
|
|
set_local_dist(libgnucash_DIST_local CMakeLists.txt ${libgnucash_EXTRA_DIST})
|
|
|
|
set(libgnucash_DIST ${libgnucash_DIST_local} ${app_utils_DIST} ${backend_DIST}
|
|
${core_utils_DIST} ${doc_DIST} ${engine_DIST} ${gnc_module_DIST}
|
|
${quotes_DIST} ${tax_DIST} PARENT_SCOPE)
|