mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-21 16:38:06 -06:00
5bf3bfc6b6
Changes to tip_of_the_day.list.c will now properly trigger a rebuild. Plus a few minor assorted fixes and changes to generating the man pages - only generate the final files in share/gnucash, not in the build directory - gnucash-cli.1 was not installed, gnucash.1 twice
16 lines
723 B
CMake
16 lines
723 B
CMake
# Command to configure the gnucash man page
|
|
# These commands are store in a separate cmake file as they have to be
|
|
# rerun depending on build conditions, not depending on cmake conditions
|
|
# (such as did the version string change or not)
|
|
#
|
|
# The following environment variables are used and should be properly set
|
|
# by the calling code:
|
|
# - SRC_DIR (top level source code directory)
|
|
# - SRC (full path to gnc-vcs-info.h.in)
|
|
# - DST (name of the manpage to generate)
|
|
# - VCS_INFO_FILE (full path to gnc-vcs-info.h - can be in source tree (release builds) or build tree (git builds))
|
|
|
|
include (${SRC_DIR}/cmake/version-info2env.cmake)
|
|
versioninfo2env (${VCS_INFO_FILE})
|
|
configure_file(${SRC} ${DATADIR_BUILD}/gnucash/${DST} )
|