File tree 5 files changed +12
-11
lines changed
5 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -843,6 +843,13 @@ add_definitions (-DHAVE_CONFIG_H)
843
843
set (CONFIG_H ${CMAKE_CURRENT_BINARY_DIR} /common/config.h)
844
844
configure_file (${CMAKE_CURRENT_SOURCE_DIR} /common/config.h.cmake.in ${CONFIG_H} )
845
845
846
+ # The doxygen developer documentation
847
+ find_program (DOXYGEN doxygen)
848
+ if (NOT ${DOXYGEN} STREQUAL "DOXYGEN-NOTFOUND" )
849
+ configure_file (doxygen.cfg.in doxygen.cfg)
850
+ add_custom_target (doc ${DOXYGEN} doxygen.cfg)
851
+ endif ()
852
+
846
853
# The subdirectories
847
854
add_subdirectory (borrowed)
848
855
add_subdirectory (data)
@@ -884,7 +891,10 @@ endif()
884
891
set (DIST_FILE "${PACKAGE_PREFIX} .tar" )
885
892
886
893
set (toplvl_DIST_local ${gnucash_DOCS}
887
- CMakeLists.txt README)
894
+ doxygen.cfg.in
895
+ doxygen_main_page.c
896
+ CMakeLists.txt
897
+ README)
888
898
889
899
890
900
set_local_dist(toplvl_DIST ${toplvl_DIST_local} )
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ PROJECT_LOGO =
68
68
# entered, it will be relative to the location where doxygen was started. If
69
69
# left blank the current directory will be used.
70
70
71
- OUTPUT_DIRECTORY =
71
+ OUTPUT_DIRECTORY = doxygen
72
72
73
73
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096
74
74
# sub-directories (in 2 levels) under the output directory of each output format
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
set (doc_FILES
2
2
constderv.html
3
- doxygen.cfg.in
4
- doxygen_main_page.c
5
3
finderv.html
6
4
finutil.html
7
5
README
8
6
)
9
7
10
8
set_local_dist(doc_DIST_local CMakeLists.txt ${doc_FILES} )
11
9
set (doc_DIST ${doc_DIST_local} ${doc_design_DIST} PARENT_SCOPE)
12
-
13
- find_program (DOXYGEN doxygen)
14
- if (NOT ${DOXYGEN} STREQUAL "DOXYGEN-NOTFOUND" )
15
- configure_file (doxygen.cfg.in doxygen.cfg)
16
- add_custom_target (doc ${DOXYGEN} doxygen.cfg)
17
- endif ()
Original file line number Diff line number Diff line change @@ -621,7 +621,6 @@ libgnucash/core-utils/gnc-locale-utils.cpp
621
621
libgnucash/core-utils/gnc-path.c
622
622
libgnucash/core-utils/gnc-prefs.c
623
623
libgnucash/core-utils/gnc-version.c
624
- libgnucash/doc/doxygen_main_page.c
625
624
libgnucash/engine/Account.cpp
626
625
libgnucash/engine/cap-gains.cpp
627
626
libgnucash/engine/cashobjects.cpp
You can’t perform that action at this time.
0 commit comments