# CMakeLists.txt for GnuCash cmake_minimum_required (VERSION 3.14.5) # CMake 3.15+ Python3_FIND_STRATEGY=LOCATION if (POLICY CMP0094) cmake_policy(SET CMP0094 NEW) endif() project (gnucash VERSION 5.5 ) enable_testing() set (PACKAGE_NAME GnuCash) set (PACKAGE_BUGREPORT "https://bugs.gnucash.org") set (PACKAGE_STRING "${PACKAGE_NAME} ${PROJECT_VERSION}") set (PACKAGE_URL "https://www.gnucash.org/") # Change this in development versions when changing anything that # affects stored data structures. Reset to zero when bumping version. set (GNUCASH_RESAVE_VERSION "19920") # Clear cache variables that will be filled later during the cmake run unset(dist_generated CACHE) unset(dist_generated_depends CACHE) # Extra cmake macros set (CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/common/cmake_modules;${CMAKE_MODULE_PATH}") # CMake does a non-recursive build that puts the final build product directories in the build root. Some code needs to know this. include (MacroAppendForeach) include (MacroAddSourceFileCompileFlags) include (GncAddSwigCommand) include (CheckIncludeFiles) include (GncAddSchemeTargets) include (GncAddGSchemaTargets) include (GncAddTest) include (GncGenerateGResources) include (MakeDistFiles) include (GNUInstallDirs) include (TestBigEndian) # ############################################################ # These options are settable from the CMake command line. For example, to disable # SQL, put -D WITH_SQL=OFF on the command line. option (WITH_SQL "Build this project with SQL (libdbi) support" ON) option (WITH_AQBANKING "Build this project with aqbanking (online banking and a variety of file import formats) support" ON) option (WITH_GNUCASH "Build all of GnuCash, not just the library" ON) option (WITH_OFX "compile with ofx support (needs LibOFX)" ON) option (WITH_PYTHON "enable python plugin and bindings" OFF) option (ENABLE_BINRELOC "compile with binary relocation support" ON) option (DISABLE_NLS "do not use Native Language Support" OFF) option (COVERAGE "Instrument a Debug or Asan build for coverage reporting" OFF) option (GUILE_COVERAGE "Compute testing coverage of Scheme code. WARNING: 15X slowdown!" OFF) option (LEAKS "Report leaks for tests in a non-Apple Asan build." OFF) option (ODR "Report One Definition Rule violations in tests in a non-Apple Asan build." OFF) # ############################################################ # These are also settable from the command line in a similar way. # Use gsettings-desktop-schemas for a better integration with GNOME set(COMPILE_GSCHEMAS ON CACHE BOOL "Compile the GSettings schema") # Support for downstream packagers set(GNUCASH_BUILD_ID "" CACHE STRING "Overrides the GnuCash build identification (Build ID) which defaults to a description of the vcs commit from which gnucash is built. Distributions may want to insert a package management based version number instead") # In addition to the GNUCASH_BUILD_ID environment variable, packagers can overwrite # gnucash/gnome/gnucash.releases.xml with (package) release details to be included # in the appdata file. It should follow appdata node conventions. # Common prefix to use for GLib resources related to GnuCash set (GNUCASH_RESOURCE_PREFIX "/org/${PROJECT_NAME}/${PACKAGE_NAME}") # Check that all of the absolute install paths are inside # ${CMAKE_INSTALL_PREFIX}. If they're not, disable binreloc as it # won't be able to find paths that aren't relative to the location of # the executable. foreach(install_dir ${CMAKE_INSTALL_FULL_BINDIR} ${CMAKE_INSTALL_FULL_SYSCONFDIR} ${CMAKE_INSTALL_FULL_DATAROOTDIR} ${CMAKE_INSTALL_FULL_DATADIR} ${CMAKE_INSTALL_FULL_LIBDIR}) string(FIND ${install_dir} ${CMAKE_INSTALL_PREFIX} in_prefix) if(NOT (in_prefix EQUAL 0)) set(ENABLE_BINRELOC OFF) message(WARNING "${install_dir} is set outside of the installation prefix ${CMAKE_INSTALL_PREFIX}. That will break relocation so ENABLE_BINRELOC is set to off. With relocation disabled GnuCash will run only in its configured install location. You must set GNC_UNINSTALLED=1 and GNC_BUILDDIR=/path/to/builddir to run from the build directory. GnuCash will not run from a DESTDIR.") break() endif() endforeach() # GnuCash installs two files in ${CMAKE_INSTALL_SYSCONFDIR} set(BINDIR ${CMAKE_INSTALL_BINDIR} CACHE STRING "user executables") set(SYSCONFDIR ${CMAKE_INSTALL_SYSCONFDIR} CACHE STRING "read-only single-machine data") set(DATAROOTDIR ${CMAKE_INSTALL_DATAROOTDIR} CACHE STRING "read-only arch.-independent data root") set(DATADIR ${CMAKE_INSTALL_DATADIR} CACHE STRING "read-only architecture-independent data") set(LIBDIR ${CMAKE_INSTALL_LIBDIR} CACHE STRING "object code libraries") set(LOCALEDIR ${DATAROOTDIR}/locale CACHE STRING "locale-dependent data") set(GNC_HELPDIR ${DATADIR} CACHE STRING "where to store help files") set(DATADIRNAME share) set(GNC_SYSTEM_XDG_DATA_DIRS /usr/local/share /usr/share) if (NOT DEFINED GNC_DBD_DIR) set(GNC_DBD_DIR $ENV{GNC_DBD_DIR} CACHE PATH "Hint for location of libdbi-drivers.") endif() set(PKGLIBDIR ${CMAKE_INSTALL_LIBDIR}/gnucash) set(DATADIR_BUILD ${CMAKE_BINARY_DIR}/${DATADIRNAME}) string(REPLACE ${CMAKE_INSTALL_PREFIX} "" LIBDIR_BUILD ${LIBDIR}) set(LIBDIR_BUILD ${CMAKE_BINARY_DIR}/${LIBDIR_BUILD}) set(SYSCONFDIR_BUILD ${CMAKE_BINARY_DIR}/etc) set(LIBEXECDIR_BUILD ${CMAKE_BINARY_DIR}/libexec) set(BINDIR_BUILD ${CMAKE_BINARY_DIR}/bin) # We need to distinguish between MinGW.org and MinGW-w64: if (MINGW) string(FIND ${CMAKE_C_COMPILER} "msys2" IS_MSYS2) if(${IS_MSYS2} GREATER_EQUAL 0) set(MINGW64 ON) endif() endif() # Find a proper bash executable set(GNC_SHELL $ENV{GNC_SHELL}) if (GNC_SHELL) # Replacing this with if ($ENV{GNC_SHELL}) doesn't work. # Allow shell override by setting the GNC_SHELL environment variable set(SHELL ${GNC_SHELL}) elseif (MINGW AND NOT MINGW64) # Old mingw's bash is on on the path, so hard-code it for now set(SHELL ${CMAKE_PREFIX_PATH}/mingw/msys/1.0/bin/bash.exe) else() find_package(UnixCommands) if (BASH) set(SHELL ${BASH}) else() message(SEND_ERROR "Can't find a suitable bash executable. Please set GNC_SHELL.") endif() endif() # Determine whether we are building from a VCS or from a tarball execute_process( COMMAND ${SHELL} ${CMAKE_SOURCE_DIR}/util/gnc-vcs-info -t ${CMAKE_SOURCE_DIR} RESULT_VARIABLE GNC_VCS_INFO_RESULT OUTPUT_VARIABLE GNC_VCS_INFO_OUTPUT OUTPUT_STRIP_TRAILING_WHITESPACE ) set(BUILDING_FROM_VCS "NO") if (GNC_VCS_INFO_RESULT EQUAL 0) set(BUILDING_FROM_VCS "YES") # if building from VCS, we need git find_package(Git) if (NOT GIT_FOUND) message(SEND_ERROR "Looks like we're building from version control, but can't find git executable. Please set GIT_EXECUTABLE.") endif() set(VCS_INFO_BASE_DIR ${CMAKE_BINARY_DIR}) else() set(VCS_INFO_BASE_DIR ${CMAKE_SOURCE_DIR}) endif() # The location of gnc-vcs-info.h depends on whether we build from VCS or not # And this file is needed in several other build rules, so we define its # location once here. set(VCS_INFO_FILE ${VCS_INFO_BASE_DIR}/libgnucash/core-utils/gnc-vcs-info.h) if (WIN32) # Help Windows find the various dependencies. We assume here that the standard advice for building # GnuCash has been followed and that these dependencies live underneath something like C:/GCDEV, which # should be provided as CMAKE_PREFIX_PATH on the CMake command line: # cmake -D CMAKE_PREFIX_PATH=c/gcdev -G "MSYS Makefiles" path/to/gnucash/sources # set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "") set(CMAKE_FRAMEWORK_PATH_TMP ${CMAKE_PREFIX_PATH}) set(DEV_SUBDIRS aqbanking gnome guile gwenhywfar libgsf libofx libsoup libxslt webkit) foreach(subdir ${DEV_SUBDIRS}) list(APPEND CMAKE_FRAMEWORK_PATH_TMP ${CMAKE_PREFIX_PATH}/${subdir}) endforeach() # Setting CMAKE_FRAMEWORK_PATH, which is intended for OS X, is a terrible hack here. But I don't # want to mess with CMAKE_PREFIX_PATH. set(CMAKE_FRAMEWORK_PATH "${CMAKE_FRAMEWORK_PATH_TMP}") #set(PKG_CONFIG_EXECUTABLE ${CMAKE_PREFIX_PATH}/gnome/bin/pkg-config.exe) set(SWIG_EXECUTABLE swig) #set(SWIG_EXECUTABLE ${CMAKE_PREFIX_PATH}/swig/swig.exe) find_path(REGEX_INCLUDE_PATH regex.h) find_path(REGEX_LIB_PATH libregex.dll.a) set(REGEX_LDFLAGS "-L${REGEX_LIB_PATH} -lregex") #set(LIBXSLT_INCLUDE_DIR ${CMAKE_PREFIX_PATH}/libxslt/include) #set(LIBXSLT_XSLTPROC_EXECUTABLE ${CMAKE_PREFIX_PATH}/libxslt/bin/xsltproc) #Prevent creating a console window on startup and harden the executable. set(CMAKE_EXE_LINKER_FLAGS "-mwindows -Wl,--nxcompat -Wl,--dynamicbase") endif() find_package(Threads REQUIRED) find_package(PkgConfig REQUIRED) if (NOT PKG_CONFIG_FOUND) message (SEND_ERROR "pkg-config not found, but is required") endif() # glib et al. set(GLIB_MIN_VERSION 2.56.1) set(GTK_MIN_VERSION 3.22.30) pkg_check_modules (GLIB2 REQUIRED IMPORTED_TARGET glib-2.0>=${GLIB_MIN_VERSION}) pkg_check_modules (GIO REQUIRED gio-2.0) pkg_check_modules (GOBJECT REQUIRED gobject-2.0) pkg_check_modules (GMODULE REQUIRED gmodule-2.0) pkg_check_modules (GTHREAD REQUIRED gthread-2.0) pkg_check_modules (LIBXML2 REQUIRED libxml-2.0>=2.9.4) pkg_check_modules (LIBXSLT REQUIRED libxslt) if (WITH_GNUCASH) if (WIN32) pkg_check_modules (WEBKIT REQUIRED IMPORTED_TARGET webkitgtk-3.0) set(WEBKIT1 1 CACHE INTERNAL "WebKitGtk") else() pkg_check_modules (WEBKIT IMPORTED_TARGET webkit2gtk-4.0>=2.14.0) if (NOT WEBKIT_FOUND) pkg_check_modules (WEBKIT REQUIRED IMPORTED_TARGET webkit2gtk-4.1) endif() set(WEBKIT2 1 CACHE INTERNAL "WebKit2Gtk4") endif() pkg_check_modules (GTK3 REQUIRED IMPORTED_TARGET gtk+-3.0>=${GTK_MIN_VERSION}) endif() pkg_check_modules (ZLIB REQUIRED zlib) if (MSVC) message (STATUS "Hint: To create the import libraries for the gnome DLLs (e.g. gconf-2.lib), use the dlltool as follows: pexports bin/libgconf-2-4.dll > lib/libgconf-2.def ; dlltool -d lib/libgconf-2.def -D bin/libgconf-2-4.dll -l lib/gconf-2.lib") # Disable the obnoxious min/max macros in MSVC - we want to use the # function versions of them. add_definitions ( -DNOMINMAX ) endif() find_path (LTDL_INCLUDE_PATH NAMES ltdl.h PATHS /usr/include) if(NOT LTDL_INCLUDE_PATH-NOTFOUND) set(HAVE_LTDL_H 1) endif() find_program(GLIB_COMPILE_SCHEMAS glib-compile-schemas HINTS ${CMAKE_PREFIX_PATH}/gnome/bin) if (NOT GLIB_COMPILE_SCHEMAS) message(SEND_ERROR "Can't find glib-compile-schemas program. Please set GLIB_COMPILE_SCHEMAS.") endif() find_path (REGEX_INCLUDE_PATH NAMES regex.h PATHS /usr/include /opt/gnome/include) find_library (REGEX_LIBRARY NAMES regex) # I18N # Potfile generation will only be enabled if building from a git worktree set (BUILD_GNUCASH_POT ${BUILDING_FROM_VCS}) find_package (Gettext 0.19.6 REQUIRED) if (${GETTEXT_VERSION_STRING} VERSION_LESS 0.20) message (WARNING "Gettext version 0.20 or more recent is required to translate the 'developer_name' tag in gnucash.appdata.xml. All but that tag will be translated in the generated file.") if(BUILD_GNUCASH_POT) # Only emit warning if potfile generation was enabled otherwise message (WARNING "Gettext version 0.20 or more recent is required to extract all translatable strings. Potfile generation will be disabled.") endif() set (BUILD_GNUCASH_POT OFF) endif() find_path (LIBINTL_INCLUDE_PATH NAMES libintl.h PATHS /usr/include /opt/gnome/include) find_library (LIBINTL_LIBRARY NAMES intl) # HELP if (WIN32) message(STATUS "Looking for htmlhelp.h and htmlhelp.a") find_path (HTMLHELP_INCLUDE_PATH NAMES htmlhelp.h) find_library (HTMLHELP_LIBRARY htmlhelp) endif() # ############################################################ # SWIG find_package (SWIG 3.0.12 REQUIRED) include (${SWIG_USE_FILE}) # Find Guile and determine which version we are using. # Look for guile versions in this order: 3.0 > 2.2 > 2.0 # guile library and include dir pkg_check_modules (GUILE3 guile-3.0 QUIET) pkg_check_modules (GUILE22 guile-2.2 QUIET) pkg_check_modules (GUILE2 guile-2.0>=2.0.9 QUIET) if (GUILE3_FOUND) # found guile-3.0 add_definitions (-DHAVE_GUILE30) set(HAVE_GUILE3 TRUE) set(GUILE_EFFECTIVE_VERSION 3.0) set(GUILE_INCLUDE_DIRS ${GUILE3_INCLUDE_DIRS}) set(GUILE_LDFLAGS ${GUILE3_LDFLAGS}) pkg_get_variable (GUILD_EXECUTABLE guile-3.0 guild) pkg_get_variable (GUILE_EXECUTABLE guile-3.0 guile) if (NOT GUILD_EXECUTABLE) find_program (GUILD_EXECUTABLE NAMES guild3.0 guild) endif() if (NOT GUILD_EXECUTABLE) message (SEND_ERROR "The guild executable was not found, but is required. Please set GUILD_EXECUTABLE.") endif() message(STATUS "Using guile-3.0.x") if (NOT GUILE_EXECUTABLE) find_program (GUILE_EXECUTABLE NAMES guile3.0 guile) endif() elseif (GUILE22_FOUND) # found guile-2.2 add_definitions (-DHAVE_GUILE22) set(HAVE_GUILE2 TRUE) set(GUILE_EFFECTIVE_VERSION 2.2) set(GUILE_INCLUDE_DIRS ${GUILE22_INCLUDE_DIRS}) set(GUILE_LDFLAGS ${GUILE22_LDFLAGS}) pkg_get_variable (GUILD_EXECUTABLE guile-2.2 guild) pkg_get_variable (GUILE_EXECUTABLE guile-2.2 guile) if (NOT GUILD_EXECUTABLE) find_program (GUILD_EXECUTABLE NAMES guild2.2 guild) endif() if (NOT GUILD_EXECUTABLE) message (SEND_ERROR "The guild executable was not found, but is required. Please set GUILD_EXECUTABLE.") endif() message(STATUS "Using guile-2.2.x") if (NOT GUILE_EXECUTABLE) find_program (GUILE_EXECUTABLE NAMES guile2.2 guile) endif() elseif (GUILE2_FOUND) # found guile-2.0 add_definitions (-DHAVE_GUILE20) set(HAVE_GUILE2 TRUE) set(GUILE_EFFECTIVE_VERSION 2.0) set(GUILE_INCLUDE_DIRS ${GUILE2_INCLUDE_DIRS}) set(GUILE_LDFLAGS ${GUILE2_LDFLAGS}) pkg_get_variable (GUILD_EXECUTABLE guile-2.0 guild) pkg_get_variable (GUILE_EXECUTABLE guile-2.0 guile) if (NOT GUILD_EXECUTABLE) find_program (GUILD_EXECUTABLE NAMES guild2.0 guild) endif() if (NOT GUILD_EXECUTABLE) message (SEND_ERROR "The guild executable was not found, but is required. Please set GUILD_EXECUTABLE.") endif() message(STATUS "Using guile-2.0.x") if (NOT GUILE_EXECUTABLE) find_program (GUILE_EXECUTABLE NAMES guile2.0 guile) endif() else() message (FATAL_ERROR "Neither guile 3.0, guile 2.2, nor guile 2.0 were found GnuCash can't run without one of them. Ensure that one is installed and can be found with pkg-config.") endif() if (NOT GUILE_EXECUTABLE) message (SEND_ERROR "The guile executable was not found, but is required. Please set GUILE_EXECUTABLE.") endif() # Test that guile has SRFI-64. This is required for some unit tests. execute_process (COMMAND ${GUILE_EXECUTABLE} -c "(use-modules (srfi srfi-64))" RESULT_VARIABLE GNC_SRFI64_RESULT ERROR_QUIET ) if (GNC_SRFI64_RESULT EQUAL 0) message (STATUS "Using guile SRFI-64") set (HAVE_SRFI64 TRUE) endif() # Test that guile has textual-ports. This is required for the stress test. execute_process (COMMAND ${GUILE_EXECUTABLE} -c "(use-modules (ice-9 textual-ports))" RESULT_VARIABLE GNC_TEXT_PORTS_RESULT ERROR_QUIET ) if (GNC_TEXT_PORTS_RESULT EQUAL 0) message (STATUS "Using guile textual-ports") set (HAVE_TEXT_PORTS TRUE) endif() # Determine where to install our guile modules libraries. find_guile_dirs() # ############################################################ if (WITH_AQBANKING) pkg_check_modules (GWENHYWFAR REQUIRED gwenhywfar>=5.6.0) pkg_check_modules (AQBANKING REQUIRED aqbanking>=6.2.0) set(CMAKE_REQUIRED_INCLUDES "${AQBANKING_INCLUDE_DIRS}" "${GWENHYWFAR_INCLUDE_DIRS}") set(CMAKE_REQUIRED_LIBRARIES "${AQBANKING_LD_FLAGS}") include(CheckSymbolExists) check_symbol_exists("AB_Banking_RuntimeConfig_SetCharValue" "aqbanking/banking.h" AQB_HAS_RUNTIME_CONFIG) set(CMAKE_REQUIRED_INCLUDES) set(CMAKE_REQUIRED_LIBRARIES) if(WITH_GNUCASH) pkg_check_modules (GWEN_GTK3 REQUIRED gwengui-gtk3) endif() endif() if (WITH_OFX) pkg_check_modules (LIBOFX REQUIRED libofx) include(CheckCXXSourceRuns) if (WIN32) set(CMAKE_REQUIRED_LIBRARIES "-L ${CMAKE_PREFIX_PATH}/libofx/lib -lofx") else() set(CMAKE_REQUIRED_LIBRARIES "-lofx") endif() CHECK_CXX_SOURCE_RUNS(" #include #include #include extern time_t ofxdate_to_time_t(const std::string ofxdate); int main(int argc, char** argv) { const std::string timestr = \"20160319000000\"; struct tm ts; ts.tm_year = 116; ts.tm_mon = 2; ts.tm_mday = 19; #ifdef _WIN32 putenv(\"TZ=PST-8PDT-7,M 4.1.0/0,M 10.6.0/0\"); #else setenv(\"TZ\", \"PST 08P DT 07 M 4.1.0, M 10.6.0\", 1); #endif time_t t = ofxdate_to_time_t(timestr); if (t == mktime(&ts)) exit(1); exit(0); } " HAVE_OFX_BUG_39) set(HAVE_OFX_BUG_39 ${HAVE_OFX_BUG_39}) if (LIBOFX_VERSION VERSION_GREATER_EQUAL 0.10.0) set(HAVE_LIBOFX_VERSION_0_10 1) endif() set(CMAKE_REQUIRED_LIBRARIES) endif() # ############################################################ if(APPLE) execute_process( COMMAND ${PKG_CONFIG_EXECUTABLE} --variable=targets gdk-3.0 OUTPUT_VARIABLE TARGET_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE ) if(TARGET_RESULT STREQUAL "quartz") set(GNC_PLATFORM_COCOA 1) set(GDK_QUARTZ 1) pkg_check_modules(GTK_MAC IMPORTED_TARGET gtk-mac-integration-gtk3) if (GTK_MAC_FOUND) set(MAC_INTEGRATION 1) find_library(COCOA_LIBRARY Cocoa) find_library(SECURITY_LIBRARY Security) find_library(CARBON_LIBRARY Carbon) set(OSX_EXTRA_COMPILE_FLAGS $<$:-xobjective-c> $<$:-xobjective-c++>) set(OSX_EXTRA_LIBRARIES objc ${COCOA_LIBRARY} ${SECURITY_LIBRARY} ${CARBON_LIBRARY}) endif() endif() endif() # find_package(LibXslt) eats PKG_CONFIG_EXECUTABLE, so preserve it. set(GNC_PKG_CONFIG_EXE ${PKG_CONFIG_EXECUTABLE}) # ############################################################ # xsltproc find_package(LibXslt) if (NOT LIBXSLT_FOUND) message(FATAL_ERROR "libxslt library not found.") endif() if (${LIBXSLT_XSLTPROC_EXECUTABLE} STREQUAL "LIBXSLT_XSLTPROC_EXECUTABLE-NOTFOUND") message(FATAL_ERROR "xsltproc executable not found") endif() # ############################################################ set(PKG_CONFIG_EXECUTABLE ${GNC_PKG_CONFIG_EXE}) # libdbi find_path (LIBDBI_INCLUDE_PATH dbi/dbi.h) find_library (LIBDBI_LIBRARY dbi) find_library (LIBDBI_DRIVERS NAMES dbdmysql dbdpgsql dbdsqlite3 NAMES_PER_DIR PATH_SUFFIXES dbd libdbi-drivers/dbd HINTS ${LIBDBI_LIBRARY} PATHS ${GNC_DBD_DIR} DOC "Libdbi Drivers Directory") if (WITH_SQL) if (NOT LIBDBI_INCLUDE_PATH) message (SEND_ERROR "Include file was not found - did you install libdbi0-dev or libdbi-dev?") endif() if (NOT LIBDBI_LIBRARY) message (SEND_ERROR "Library libdbi was not found") endif() set(HAVE_DBI_DBI_H 1) if (NOT LIBDBI_DRIVERS) message (SEND_ERROR "No libdbi drivers found, SQL tests will fail.") else() get_filename_component(drivers_dir ${LIBDBI_DRIVERS} DIRECTORY) set(LIBDBI_DRIVERS_DIR ${drivers_dir} CACHE FILEPATH "Directory containing the libdbi driver modules." FORCE) endif() endif() # ############################################################ if (WITH_PYTHON) set (PYTHON_MIN_VERSION 3.8.0) if (NOT DEFINED Python3_FIND_UNVERSIONED_NAMES) set (Python3_FIND_UNVERSIONED_NAMES FIRST) endif() find_package (Python3 ${PYTHON_MIN_VERSION} COMPONENTS Interpreter Development) if (NOT Python3_FOUND) message(SEND_ERROR "Python support enabled, but Python3 interpreter and/or libaries not found.") endif() # Determine where to install the python libraries. execute_process( COMMAND ${Python3_EXECUTABLE} -c "from sysconfig import get_path; print(get_path('platlib', 'posix_user', {'userbase': '${CMAKE_INSTALL_PREFIX}'}))" RESULT_VARIABLE PYTHON_SYSCONFIG_RESULT OUTPUT_VARIABLE PYTHON_SYSCONFIG_OUTPUT ERROR_VARIABLE PYTHON_SYSCONFIG_ERROR OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_STRIP_TRAILING_WHITESPACE ) if (PYTHON_SYSCONFIG_RESULT) message(SEND_ERROR "Could not determine Python site-package directory:\n${PYTHON_SYSCONFIG_ERROR}") endif() string(REPLACE ${CMAKE_INSTALL_PREFIX} ${CMAKE_BINARY_DIR} PYTHON_SYSCONFIG_BUILD ${PYTHON_SYSCONFIG_OUTPUT}) endif() find_package(Perl) if (NOT PERL_FOUND) message(SEND_ERROR "Perl executable not found. Please set PERL_EXECUTABLE.") endif() execute_process(COMMAND ${PERL_EXECUTABLE} -MFinance::Quote -e "" ERROR_QUIET RESULT_VARIABLE have_f_q) if (${have_f_q} EQUAL 0) set(HAVE_F_Q 1) endif() get_filename_component(PERL_DIR ${PERL_EXECUTABLE} DIRECTORY) find_program(POD2MAN_EXECUTABLE pod2man HINTS ${PERL_DIR}) #ICU pkg_check_modules (ICU4C REQUIRED icu-uc) pkg_check_modules (ICU4C_I18N REQUIRED icu-i18n) pkg_check_modules (LIBSECRET libsecret-1>=0.18) IF (LIBSECRET_FOUND) SET (HAVE_LIBSECRET ON) ENDIF (LIBSECRET_FOUND) #BOOST set (Boost_USE_MULTITHREADED ON) set (Boost_FIND_QUIETLY ON) if (NOT DEFINED ${BOOST_ROOT}) set(BOOST_ROOT $ENV{BOOST_ROOT}) endif() find_package (Boost 1.67.0 COMPONENTS date_time filesystem locale program_options regex system) if (Boost_FOUND) include_directories(${Boost_INCLUDE_DIRS}) set(HAVE_BOOST 1) else() find_package (Boost 1.60.0 REQUIRED COMPONENTS date_time regex locale filesystem system program_options) if (Boost_FOUND) include (CheckIncludeFileCXX) set(CMAKE_REQUIRED_FLAGS "-std=c++17") set(CMAKE_REQUIRED_INCLUDES ${Boost_INCLUDE_DIR}) check_include_file_cxx("boost/locale.hpp" AUTO_PTR) unset(CMAKE_REQUIRED_FLAGS) unset(CMAKE_REQUIRED_INCLUDES) if(AUTO_PTR) include_directories(${Boost_INCLUDE_DIRS}) set(HAVE_BOOST 1) endif() endif() endif() if (NOT HAVE_BOOST) message (SEND_ERROR "A suitable Boost is not installed, and is required. GnuCash requires that Boost be compatible and compiled with C++17. Boost 1.67 is the first compatible release but some distributions have patched earlier ones to work with C++17. Please install it and ensure that the following libraries are built: date_time, filesystem, locale, regex, program_options and system.") endif() # Compiler flags include (CheckCCompilerFlag) include (CheckCXXCompilerFlag) check_c_compiler_flag(-Wstringop-truncation have_stringop_truncation) if (have_stringop_truncation) set(HAVE_STRINGOP_TRUNCATION TRUE) endif() add_definitions(-D_GNU_SOURCE) # Set up the language standards: set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) set(CMAKE_C_STANDARD 11) set(CMAKE_C_STANDARD_REQUIRED ON) set(CMAKE_C_EXTENSIONS ON) if (UNIX) set( CMAKE_C_FLAGS "-Werror -Wall -Wmissing-prototypes -Wmissing-declarations ${CMAKE_C_FLAGS}") set( CMAKE_CXX_FLAGS "-Werror -Wall -Wmissing-declarations ${CMAKE_CXX_FLAGS}") set( CMAKE_C_FLAGS_RELEASE "-O3 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 ${CMAKE_C_FLAGS}") endif() if (MINGW) set( CMAKE_C_FLAGS "-Werror -Wall -Wmissing-prototypes -Wmissing-declarations ${CMAKE_C_FLAGS}") set( CMAKE_CXX_FLAGS "-DWINVER=0x0500 -D_EMULATE_GLIBC=0 ${CMAKE_CXX_FLAGS}") # Workaround for bug in gtest on mingw, see https://github.com/google/googletest/issues/893 and https://github.com/google/googletest/issues/920 endif() if (APPLE) execute_process(COMMAND clang --print-file-name=libclang_rt.asan_osx_dynamic.dylib OUTPUT_VARIABLE ASAN_DYNAMIC_LIB OUTPUT_STRIP_TRAILING_WHITESPACE) set(ASAN_DYNAMIC_LIB_ENV "DYLD_INSERT_LIBRARIES=${ASAN_DYNAMIC_LIB}") set(ASAN_BUILD_OPTIONS fast_unwind_on_malloc=0) elseif(UNIX) execute_process(COMMAND gcc -print-file-name=libasan.so OUTPUT_VARIABLE LIBASAN_PATH OUTPUT_STRIP_TRAILING_WHITESPACE) execute_process(COMMAND gcc -print-file-name=libstdc++.so OUTPUT_VARIABLE LIBSTDCXX_PATH OUTPUT_STRIP_TRAILING_WHITESPACE) set(PRELOADS "${LIBASAN_PATH}:${LIBSTDCXX_PATH}") set(ASAN_BUILD_OPTIONS "detect_leaks=0:fast_unwind_on_malloc=0") set(ASAN_DYNAMIC_LIB_ENV LD_PRELOAD=${PRELOADS}) endif () set(ASAN_LINK_OPTIONS -fsanitize=address -fsanitize=undefined) if (COVERAGE OR GUILE_COVERAGE) include(GncCoverage) endif() if (COVERAGE) set(COVERAGE_COMPILE_OPTION --coverage) add_compile_options("$<$:${COVERAGE_COMPILE_OPTION}>") add_link_options("$<$:${COVERAGE_COMPILE_OPTION}>") list(APPEND ASAN_LINK_OPTIONS ${COVERAGE_COMPILE_OPTION}) endif() set(ASAN_COMPILE_OPTIONS -g ${ASAN_LINK_OPTIONS}) add_compile_options("$<$:${ASAN_COMPILE_OPTIONS}>") add_link_options("$<$:${ASAN_LINK_OPTIONS}>") # See https://github.com/google/sanitizers/wiki/AddressSanitizerFlags#run-time-flags set(ASAN_TEST_OPTIONS fast_unwind_on_malloc=0) if (UNIX AND NOT APPLE) if (LEAKS) list(APPEND ASAN_TEST_OPTIONS detect_leaks=1) else() list(APPEND ASAN_TEST_OPTIONS detect_leaks=0) endif() if (ODR) list(APPEND ASAN_TEST_OPTIONS detect_odr_violation=2) else() list(APPEND ASAN_TEST_OPTIONS detect_odr_violation=0) endif() string(REPLACE ";" ":" ASAN_TEST_OPTIONS "${ASAN_TEST_OPTIONS}") endif() if (APPLE AND WITH_GNUCASH) set(CMAKE_MACOSX_RPATH ON) set(CMAKE_INSTALL_NAME_DIR "${CMAKE_INSTALL_FULL_LIBDIR}") endif() if (UNIX) set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_FULL_LIBDIR}:${CMAKE_INSTALL_FULL_LIBDIR}/gnucash") endif() set(BUILD_SHARED_LIBS ON) # Most libraries are installed to lib/gnucash, so set that as the default. # For the handful that are installed to lib, we override the properties below # (after the targets have been read in). set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LIBDIR_BUILD}/gnucash) if (XCODE_VERSION) # FIXME: These settings break the ability to manipulate different configurations (Debug, # FIXME: Release, etc.) in Xcode. We'll need to change the module loading C code if # we want to support multi config. set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${LIBDIR_BUILD}/gnucash) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${LIBDIR_BUILD}/gnucash) endif() # For binaries set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) if (XCODE_VERSION) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/bin) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/bin) endif() # ############################################################ gnc_gtest_configure() # There are targets that need to build before tests will run add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} ) if (COVERAGE) add_dependencies(check lcov-initialize) endif() set(gnucash_DOCS AUTHORS ChangeLog.1999 ChangeLog.2000 ChangeLog.2001 ChangeLog.2002 ChangeLog.2003 ChangeLog.2004 ChangeLog.2005 ChangeLog.2006 ChangeLog.2007 ChangeLog.2008 ChangeLog.2009 ChangeLog.2010 ChangeLog.2011 ChangeLog.2012 ChangeLog.2013 ChangeLog.2014 ChangeLog.2015 ChangeLog.2016 ChangeLog.2017 ChangeLog.2018 ChangeLog.2019 ChangeLog.2020 ChangeLog.2021 ChangeLog.2022 DOCUMENTERS HACKING LICENSE NEWS README.dependencies ) install(FILES ${gnucash_DOCS} DESTINATION ${CMAKE_INSTALL_DOCDIR}) # ############################################################ # Create config.h check_include_files (dirent.h HAVE_DIRENT_H) check_include_files (dlfcn.h HAVE_DLFCN_H) check_include_files (glob.h HAVE_GLOB_H) check_include_files (inttypes.h HAVE_INTTYPES_H) check_include_files (limits.h HAVE_LIMITS_H) check_include_files (locale.h HAVE_LOCALE_H) check_include_files (memory.h HAVE_MEMORY_H) check_include_files (stdint.h HAVE_STDINT_H) check_include_files (stdlib.h HAVE_STDLIB_H) check_include_files (string.h HAVE_STRING_H) check_include_files (strings.h HAVE_STRINGS_H) check_include_files (sys/stat.h HAVE_SYS_STAT_H) check_include_files (sys/time.h HAVE_SYS_TIME_H) check_include_files (sys/times.h HAVE_SYS_TIMES_H) check_include_files (sys/types.h HAVE_SYS_TYPES_H) check_include_files (sys/wait.h HAVE_SYS_WAIT_H) check_include_files (unistd.h HAVE_UNISTD_H) check_include_files (utmp.h HAVE_UTMP_H) check_include_files (wctype.h HAVE_WCTYPE_H) test_big_endian(IS_BIGENDIAN) if (IS_BIGENDIAN) set(WORDS_BIGENDIAN) endif() if (NOT DISABLE_NLS) set(ENABLE_NLS 1) endif() if (ENABLE_BINRELOC) if (UNIX OR MINGW) set(BR_PTHREAD 1) endif() endif() if (UNIX OR MINGW) set (HAVE_GETTIMEOFDAY 1) set (HAVE_GUILE 1) set (HAVE_LIBM 1) set (STDC_HEADERS 1) set (_ALL_SOURCE 1) set (_GNU_SOURCE 1) set (_POSIX_PTHREAD_SEMANTICS 1) set (_TANDEM_SOURCE 1) set (__EXTENSIONS__ 1) endif() if (UNIX) set (HAVE_CHOWN 1) set (HAVE_DLERROR 1) set (HAVE_DLSYM 1) set (HAVE_GETHOSTID 1) set (HAVE_GETHOSTNAME 1) set (HAVE_GETPPID 1) set (HAVE_GETUID 1) set (HAVE_GMTIME_R 1) set (HAVE_LANGINFO_D_FMT 1) set (HAVE_LC_MESSAGES 1) set (HAVE_LIBPTHREAD 1) set (HAVE_LINK 1) set (HAVE_LOCALTIME_R 1) set (HAVE_PTHREAD_MUTEX_INIT 1) set (HAVE_PTHREAD_PRIO_INHERIT 1) set (HAVE_SETENV 1) set (HAVE_STPCPY 1) set (HAVE_STRPTIME 1) set (HAVE_STRUCT_TM_GMTOFF 1) set (HAVE_TIMEGM 1) set (HAVE_TOWUPPER 1) set (GNC_PLATFORM_POSIX 1) endif() if (WIN32) set (GNC_PLATFORM_WINDOWS 1) endif() if (APPLE) # FIXME: HANDLE gtk-mac-integration-gtk2 set(GNC_PLATFORM_DARWIN 1) set(GNC_PLATFORM_OSX 1) set(PLATFORM_OSX 1) set(HAVE_OSX_KEYCHAIN 1) endif() string(REGEX MATCH "^([0-9]+)\.([0-9]+)" GLIB_MIN_MATCH ${GLIB_MIN_VERSION}) set(GLIB_API ${CMAKE_MATCH_1}_${CMAKE_MATCH_2}) set_property(TARGET PkgConfig::GLIB2 PROPERTY INTERFACE_COMPILE_DEFINITIONS GLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_${GLIB_API} GLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_${GLIB_API}) if (WITH_GNUCASH) string(REGEX MATCH "^([0-9]+)\.([0-9]+)" GTK_MIN_MATCH ${GTK_MIN_VERSION}) set(GTK_API ${CMAKE_MATCH_1}_${CMAKE_MATCH_2}) set_property(TARGET PkgConfig::GTK3 PROPERTY INTERFACE_COMPILE_DEFINITIONS GDK_VERSION_MIN_REQUIRED=GDK_VERSION_${GTK_API} GDK_VERSION_MAX_ALLOWED=GDK_VERSION_${GTK_API}) endif() add_definitions (-DHAVE_CONFIG_H) set (CONFIG_H ${CMAKE_CURRENT_BINARY_DIR}/common/config.h) configure_file (${CMAKE_CURRENT_SOURCE_DIR}/common/config.h.cmake.in ${CONFIG_H}) # The subdirectories add_subdirectory (borrowed) add_subdirectory (data) add_subdirectory (doc) # Note: po should be processed before gnucash - it provides LINGUAS, used to generate desktop and appdata files add_subdirectory (po) add_subdirectory (common) add_subdirectory (libgnucash) if (WITH_GNUCASH) add_subdirectory (gnucash) endif() add_subdirectory (bindings) add_subdirectory (test-templates) add_subdirectory (util) # This cmake subdir must be the last add_subdirectory() call because # it contains post-install actions to execute. add_subdirectory(cmake) # Generate the ChangeLog if (BUILDING_FROM_VCS) add_custom_target(ChangeLog ALL COMMAND ${GIT_EXECUTABLE} log --format=\"%ad %aN %n%n%x09* %s%d%n\" --date=short --since=2023-01-01 > ${CMAKE_BINARY_DIR}/ChangeLog WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} ) install(FILES ${CMAKE_BINARY_DIR}/ChangeLog DESTINATION ${CMAKE_INSTALL_DOCDIR}) else() install(FILES ${CMAKE_SOURCE_DIR}/ChangeLog DESTINATION ${CMAKE_INSTALL_DOCDIR}) endif() dist_add_generated (${BUILDING_FROM_VCS} ChangeLog) ############################ BEGIN MAKE DIST ################# set(PACKAGE_PREFIX "${PROJECT_NAME}-${PROJECT_VERSION}") if (PROJECT_DESCRIPTION) string(APPEND PACKAGE_PREFIX "-${PROJECT_DESCRIPTION}") endif() set(DIST_FILE "${PACKAGE_PREFIX}.tar") set(toplvl_DIST_local ${gnucash_DOCS} CMakeLists.txt README) set_local_dist(toplvl_DIST ${toplvl_DIST_local}) # Each subdirectory is responsible for reporting its list of distribution files to its parent, up to here. # # Leaf directories use the set_dist_list() function to report their distribution files. See # the bottom of libgnucash/app-utils/test/CMakeLists.txt for an example. # # A non leaf directories uses the set_local_dist() function to specify its distribution files local that dir, # then uses a (set ${foo_DIST} ${locals....} PARENT_SCOPE) command to report up. See the bottom of # libgnucash/app-utils/CMakeLists.txt for an example of this. set(ALL_DIST ${bindings_DIST} ${borrowed_DIST} ${cmake_DIST} ${common_DIST} ${data_DIST} ${doc_DIST} ${gnucash_DIST} ${libgnucash_DIST} ${packaging_DIST} ${po_DIST} ${test_templates_DIST} ${toplvl_DIST} ${util_DIST} Info.plist) if (BUILDING_FROM_VCS) set(BUILD_SOURCE_DIR ${CMAKE_BINARY_DIR}) else() set(BUILD_SOURCE_DIR ${CMAKE_SOURCE_DIR}) endif() # Write a dist manifest string(REPLACE ";" "\n" ALL_DIST_LINES "${ALL_DIST}") file(WRITE ${CMAKE_BINARY_DIR}/dist_manifest.txt ${ALL_DIST_LINES}) add_custom_command(OUTPUT ${DIST_FILE}.gz ${DIST_FILE}.bz2 COMMAND ${CMAKE_COMMAND} -D CMAKE_MODULE_PATH=${CMAKE_SOURCE_DIR}/common/cmake_modules -D PACKAGE_PREFIX=${PACKAGE_PREFIX} -D GNUCASH_SOURCE_DIR=${CMAKE_SOURCE_DIR} -D BUILD_SOURCE_DIR=${BUILD_SOURCE_DIR} -D BUILDING_FROM_VCS=${BUILDING_FROM_VCS} -D SHELL=${SHELL} -D WITH_GNUCASH=${WITH_GNUCASH} "-Ddist_generated=\"${dist_generated}\"" -P ${CMAKE_SOURCE_DIR}/common/cmake_modules/MakeDist.cmake DEPENDS ${ALL_DIST} ${dist_generated_depends} ) add_custom_target(dist DEPENDS ${DIST_FILE}.gz ${DIST_FILE}.bz2) add_custom_target(distcheck DEPENDS dist COMMAND ${CMAKE_COMMAND} -D CMAKE_MODULE_PATH=${CMAKE_SOURCE_DIR}/common/cmake_modules -D CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH} -D PACKAGE_PREFIX=${PACKAGE_PREFIX} -D CMAKE_C_FLAGS=${CMAKE_C_FLAGS} -D CMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} -D GTEST_ROOT=${GTEST_ROOT} -P ${CMAKE_SOURCE_DIR}/common/cmake_modules/MakeDistCheck.cmake ) ############################# END MAKE DIST ################# # uninstall target configure_file( "${CMAKE_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" @ONLY) add_custom_target(uninstall COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) set(_MODULES gnc-core-utils gnc-engine gnc-app-utils gnc-module gnc-locale-tax gnc-backend-xml-utils gnucash-guile) if (WITH_SQL) list(APPEND _MODULES gnc-backend-sql) endif() if (WITH_GNUCASH) list(APPEND _MODULES gnc-gnome gnc-html) endif() set_target_properties(${_MODULES} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${LIBDIR_BUILD} if (XCODE_VERSION) LIBRARY_OUTPUT_DIRECTORY_DEBUG ${LIBDIR_BUILD} LIBRARY_OUTPUT_DIRECTORY_RELEASE ${LIBDIR_BUILD} endif() RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin if (XCODE_VERSION) RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/bin RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/bin endif() ) if (WIN32) set_target_properties(gncmod-backend-xml PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin ) endif() #Link LICENSE to COPYING so that people expecting to find it, #will. COPYING is normally linked by autogen.sh to the latest #automake-provided version. set (_CMD create_symlink) if (WIN32) set(_CMD copy) endif() install(CODE " execute_process( COMMAND ${CMAKE_COMMAND} -E ${_CMD} LICENSE COPYING WORKING_DIRECTORY ${CMAKE_INSTALL_DOCDIR} )" ) #For windows, copy in some DLLs from Mingw if (WIN32) find_file(LIBSTDC++ libstdc++-6.dll) if (NOT LIBSTDC++) message(FATAL_ERROR "libstdc++ not found.") endif() find_file(LIBDW2 libgcc_s_dw2-1.dll) if (NOT LIBDW2) message(FATAL_ERROR "libgcc_s_dw2-l not found.") endif() set(MINGW_DLLS ${LIBSTDC++} ${LIBDW2}) install(PROGRAMS ${MINGW_DLLS} DESTINATION ${CMAKE_INSTALL_BINDIR}) file(COPY ${MINGW_DLLS} DESTINATION ${BINDIR_BUILD} # Do permissions matter for windows? FILE_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE ) endif() # ############################################################ # Package creation rules if(UNIX) set(CPACK_GENERATOR "TGZ") endif() include (CPack)