mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
8dd2a20ff8
The content in this commit is not split in order to preserve working compilation. Once this is added to master, the old build script will no longer work and all existing build toolings will require changes. Monero's cmake directory's files need to be copied to this project's cmake directory in order for the linking and function definitions to work correctly. Monero-gui has its own version check and generate file in order to not conflict with monero's destination version files. Most of the source files that are currently in monero-gui's root directory are now moved to subdirectories. This is done to preserve compilation order properly and to give some content structure. The original CMakeList file included all headers it found in subdirectories. Make sure that they are set manually to evade linking errors. The current build script always checks out latest master of the monero submodule. The submodule rules in the current CMakeLists.txt file do not enforce. An override to compile master nevertheless can still be given with `-D DEV_MODE`. To enable the linux X11 xcb linking the libraries had to be hardcoded. There does not seem to be good support for this in pkgconfig, or in existing cmake checks.
25 lines
977 B
CMake
25 lines
977 B
CMake
# - Try to find Berkeley DB
|
|
# Once done this will define
|
|
#
|
|
# BERKELEY_DB_FOUND - system has Berkeley DB
|
|
# BERKELEY_DB_INCLUDE_DIR - the Berkeley DB include directory
|
|
# BERKELEY_DB_LIBRARIES - Link these to use Berkeley DB
|
|
# BERKELEY_DB_DEFINITIONS - Compiler switches required for using Berkeley DB
|
|
|
|
# Copyright (c) 2006, Alexander Dymo, <adymo@kdevelop.org>
|
|
#
|
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
|
|
|
find_path(BERKELEY_DB_INCLUDE_DIR db_cxx.h
|
|
/usr/include/db4
|
|
/usr/local/include/db4
|
|
)
|
|
|
|
find_library(BERKELEY_DB_LIBRARIES NAMES db_cxx )
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(Berkeley "Could not find Berkeley DB >= 4.1" BERKELEY_DB_INCLUDE_DIR BERKELEY_DB_LIBRARIES)
|
|
# show the BERKELEY_DB_INCLUDE_DIR and BERKELEY_DB_LIBRARIES variables only in the advanced view
|
|
mark_as_advanced(BERKELEY_DB_INCLUDE_DIR BERKELEY_DB_LIBRARIES )
|
|
|