2017-12-07 15:56:05 +01:00
# 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} -------------" )
2013-07-23 19:49:42 +02:00
2017-12-07 15:56:05 +01:00
# start configuration
2013-07-23 19:49:42 +02:00
cmake_minimum_required ( VERSION 2.8 )
2018-01-23 02:29:53 +01:00
project ( dft_tools C CXX Fortran )
2013-07-23 19:49:42 +02:00
2017-12-07 15:56:05 +01:00
# Use shared libraries
set ( BUILD_SHARED_LIBS ON )
# Load TRIQS and Cpp2Py
2018-05-26 23:54:30 +02:00
find_package ( TRIQS 2.0 REQUIRED )
2018-05-28 15:38:02 +02:00
find_package ( Cpp2Py 1.5 REQUIRED )
2013-07-23 19:49:42 +02:00
2016-02-07 10:41:53 +01:00
if ( NOT ${ TRIQS_WITH_PYTHON_SUPPORT } )
MESSAGE ( FATAL_ERROR "dft_tools require Python support in TRIQS" )
endif ( )
2017-12-07 15:56:05 +01:00
# Default Install directory to TRIQS_ROOT if not given. Checks an absolute name is given.
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} -------------" )
2013-09-04 16:54:12 +02:00
2018-06-01 15:24:39 +02:00
# Use git to detect Cthyb version and git hash
execute_process ( COMMAND bash "-c" "${TRIQS_GIT_EXECUTABLE} describe | sed \" s/-\\([0-9]*\\ ) - . * / . \ \ 1 / g \ " "
W O R K I N G _ D I R E C T O R Y " $ { C M A K E _ S O U R C E _ D I R } "
O U T P U T _ V A R I A B L E D F T _ T O O L S _ V E R S I O N
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E
)
if ( NOT DFT_TOOLS_VERSION )
set ( DFT_TOOLS_VERSION 1.5 )
endif ( )
2017-12-07 15:56:05 +01:00
triqs_get_git_hash_of_source_dir ( DFT_TOOLS_GIT_HASH )
2018-06-01 15:24:39 +02:00
MESSAGE ( STATUS "Dft_tools version : ${DFT_TOOLS_VERSION}" )
2017-12-07 15:56:05 +01:00
message ( STATUS "Git hash: ${DFT_TOOLS_GIT_HASH}" )
2013-07-23 19:49:42 +02:00
add_subdirectory ( fortran/dmftproj )
2016-03-24 11:40:12 +01:00
# Add the compiling options (-D... ) for C++
message ( STATUS "TRIQS : Adding compilation flags detected by the library (C++11/14, libc++, etc...) " )
add_subdirectory ( c++ )
2018-09-06 13:48:24 +02:00
add_subdirectory ( python python/triqs_dft_tools )
2016-03-11 11:35:19 +01:00
add_subdirectory ( shells )
2017-12-07 15:56:05 +01:00
2018-01-22 23:34:20 +01:00
#------------------------
# tests
#------------------------
2018-09-06 15:09:30 +02:00
option ( TEST_COVERAGE "Analyze the coverage of tests" OFF )
# perform tests with coverage info
if ( ${ TEST_COVERAGE } )
# we try to locate the coverage program
find_program ( PYTHON_COVERAGE python-coverage )
find_program ( PYTHON_COVERAGE coverage )
if ( NOT PYTHON_COVERAGE )
message ( FATAL_ERROR "Program coverage (or python-coverage) not found.\nEither set PYTHON_COVERAGE explicitly or disable TEST_COVERAGE!\nYou need to install the python package coverage, e.g. with\n pip install coverage\nor with\n apt install python-coverage" )
endif ( )
message ( STATUS "Setting up test coverage" )
add_custom_target ( coverage ${ PYTHON_COVERAGE } combine --append .coverage plovasp/.coverage || true COMMAND ${ PYTHON_COVERAGE } html COMMAND echo "Open ${CMAKE_BINARY_DIR}/test/htmlcov/index.html in browser!" WORKING_DIRECTORY ${ CMAKE_BINARY_DIR } /test )
endif ( )
2018-01-22 23:34:20 +01:00
enable_testing ( )
2018-09-06 15:09:30 +02:00
2018-01-22 23:34:20 +01:00
option ( Build_Tests "Build the tests of the library " ON )
if ( Build_Tests )
message ( STATUS "-------- Preparing tests -------------" )
add_subdirectory ( test )
endif ( )
2017-12-07 15:56:05 +01:00
2018-01-22 23:34:20 +01:00
#------------------------
# Documentation
#------------------------
2018-03-13 13:23:52 +01:00
option ( Build_Documentation "Build documentation" OFF )
if ( ${ Build_Documentation } )
2018-02-02 15:56:08 +01:00
if ( NOT ${ TRIQS_WITH_DOCUMENTATION } )
2013-08-07 16:40:18 +02:00
message ( "Error: TRIQS library has not been compiled with its documentation" )
endif ( )
add_subdirectory ( doc )
2018-03-13 13:23:52 +01:00
endif ( )
2018-05-21 16:44:01 +02:00
#--------------------------------------------------------
# Packaging
#--------------------------------------------------------
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 ${ DFT_TOOLS_VERSION } )
SET ( CPACK_PACKAGE_CONTACT "https://github.com/TRIQS/dft_tools" )
EXECUTE_PROCESS ( COMMAND dpkg --print-architecture OUTPUT_VARIABLE CMAKE_DEBIAN_PACKAGE_ARCHITECTURE OUTPUT_STRIP_TRAILING_WHITESPACE )
2018-05-29 21:28:36 +02:00
SET ( CPACK_DEBIAN_PACKAGE_DEPENDS "python, python-numpy, python-h5py, python-jinja2, python-mako, python-mpi4py, python-matplotlib, python-scipy, cpp2py (>= 1.5), triqs (>= 2.0)" )
SET ( CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON )
SET ( CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS ON )
2018-05-21 16:44:01 +02:00
INCLUDE ( CPack )
endif ( )