mirror of
https://github.com/triqs/dft_tools
synced 2024-12-23 04:43:42 +01:00
92 lines
3.0 KiB
CMake
92 lines
3.0 KiB
CMake
# Start configuration
|
|
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
|
|
project(app4triqs CXX)
|
|
if(POLICY CMP0074)
|
|
cmake_policy(SET CMP0074 NEW)
|
|
endif()
|
|
|
|
# Default to Release build type
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
set(CMAKE_BUILD_TYPE Release CACHE STRING "Type of build" FORCE)
|
|
endif()
|
|
message( STATUS "-------- BUILD-TYPE: ${CMAKE_BUILD_TYPE} --------")
|
|
|
|
# Build static libraries
|
|
set(BUILD_SHARED_LIBS OFF)
|
|
|
|
# Export the list of compile-commands into compile_commands.json
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
# Enable compiler warnings for the whole project
|
|
add_compile_options(-Wall
|
|
$<$<CONFIG:Debug>:-Og>
|
|
$<$<CONFIG:Debug>:-ggdb3>
|
|
)
|
|
|
|
# Load Dependencies
|
|
find_package(TRIQS 2.0 REQUIRED)
|
|
find_package(Cpp2Py 1.5 REQUIRED)
|
|
|
|
# Default Install directory to TRIQS_ROOT if not given or invalid.
|
|
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT OR (NOT IS_ABSOLUTE ${CMAKE_INSTALL_PREFIX}))
|
|
message(STATUS " No install prefix given (or invalid). Defaulting to TRIQS_ROOT")
|
|
set(CMAKE_INSTALL_PREFIX ${TRIQS_ROOT} CACHE PATH "default install path" FORCE)
|
|
endif()
|
|
message(STATUS "-------- CMAKE_INSTALL_PREFIX: ${CMAKE_INSTALL_PREFIX} --------")
|
|
|
|
# Define the app4triqs version numbers and get the git hash
|
|
set(APP4TRIQS_VERSION_MAJOR 0)
|
|
set(APP4TRIQS_VERSION_MINOR 1)
|
|
set(APP4TRIQS_VERSION_PATCH 0)
|
|
set(APP4TRIQS_VERSION ${APP4TRIQS_VERSION_MAJOR}.${APP4TRIQS_VERSION_MINOR}.${APP4TRIQS_VERSION_PATCH})
|
|
triqs_get_git_hash_of_source_dir(APP4TRIQS_GIT_HASH)
|
|
message(STATUS "app4triqs version : ${APP4TRIQS_VERSION}")
|
|
message(STATUS "Git hash: ${APP4TRIQS_GIT_HASH}")
|
|
|
|
# Build and install the app4triqs library
|
|
add_subdirectory(c++/app4triqs)
|
|
|
|
# Tests
|
|
option(Build_Tests "Build tests" ON)
|
|
if(Build_Tests)
|
|
enable_testing()
|
|
add_subdirectory(test)
|
|
endif()
|
|
|
|
if(TRIQS_WITH_PYTHON_SUPPORT)
|
|
# Python interface
|
|
add_subdirectory(python/app4triqs)
|
|
|
|
# Build the documentation
|
|
option(Build_Documentation "Build documentation" OFF)
|
|
if(Build_Documentation)
|
|
if(NOT TRIQS_WITH_DOCUMENTATION)
|
|
message(WARNING "TRIQS library has not been compiled with its documentation! Cannot build documentation.")
|
|
else()
|
|
message(STATUS "Documentation Build enabled")
|
|
add_subdirectory(doc)
|
|
endif()
|
|
endif()
|
|
else()
|
|
message(WARNING "TRIQS library has been installed without Python support. Cannot build the Python Interface and Documentation.")
|
|
endif()
|
|
|
|
# Additional configuration files
|
|
add_subdirectory(share)
|
|
|
|
# Debian Package
|
|
option(BUILD_DEBIAN_PACKAGE "Build a deb package" OFF)
|
|
if(BUILD_DEBIAN_PACKAGE)
|
|
if(NOT CMAKE_INSTALL_PREFIX STREQUAL "/usr")
|
|
message(FATAL_ERROR "CMAKE_INSTALL_PREFIX must be /usr for packaging")
|
|
endif()
|
|
SET(CPACK_GENERATOR "DEB")
|
|
SET(CPACK_PACKAGE_VERSION ${APP4TRIQS_VERSION})
|
|
SET(CPACK_PACKAGE_CONTACT "https://github.com/TRIQS/app4triqs")
|
|
EXECUTE_PROCESS(COMMAND dpkg --print-architecture OUTPUT_VARIABLE CMAKE_DEBIAN_PACKAGE_ARCHITECTURE OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
SET(CPACK_DEBIAN_PACKAGE_DEPENDS "triqs (>= 2.1)")
|
|
SET(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON)
|
|
SET(CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS ON)
|
|
INCLUDE(CPack)
|
|
endif()
|