mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-25 02:10:36 -06:00
e8e179fd8f
Relevant diagrams have been added in the wiki as png files. The html files with financial calculations are copyrighted by someone outside of the gnucash project. I'd rather not add that info to the wiki. Similar information should be easy to find on the internet.
19 lines
572 B
CMake
19 lines
572 B
CMake
# 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)
|