mirror of
https://github.com/triqs/dft_tools
synced 2024-11-18 12:03:50 +01:00
add PythonSupport; change Doc build control flow
* change in Build_Documentation control flow * don’t Build_Documentation of deps if EXCLUDE_FROM_ALL * export new APP4TRIQS_WITH_PYTHON_SUPPORT variable in config.cmake
This commit is contained in:
parent
d2114bd227
commit
055e7519ba
@ -70,6 +70,15 @@ if(NOT IS_SUBPROJECT)
|
|||||||
message(STATUS "-------- BUILD-TYPE: ${CMAKE_BUILD_TYPE} --------")
|
message(STATUS "-------- BUILD-TYPE: ${CMAKE_BUILD_TYPE} --------")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# Python Support
|
||||||
|
option(PythonSupport "Build with Python support" ON)
|
||||||
|
if(PythonSupport AND NOT TRIQS_WITH_PYTHON_SUPPORT)
|
||||||
|
message(FATAL_ERROR "TRIQS was installed without Python support. Cannot build the Python Interface. Disable the build with -DPythonSupport=OFF")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Documentation
|
||||||
|
option(Build_Documentation "Build documentation" OFF)
|
||||||
|
|
||||||
# Testing
|
# Testing
|
||||||
option(Build_Tests "Build tests" ON)
|
option(Build_Tests "Build tests" ON)
|
||||||
if(Build_Tests)
|
if(Build_Tests)
|
||||||
@ -116,28 +125,19 @@ if(Build_Tests)
|
|||||||
add_subdirectory(test)
|
add_subdirectory(test)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(TRIQS_WITH_PYTHON_SUPPORT)
|
# Python
|
||||||
# Python interface
|
if(PythonSupport)
|
||||||
add_subdirectory(python/app4triqs)
|
add_subdirectory(python/app4triqs)
|
||||||
|
endif()
|
||||||
|
|
||||||
# Build the documentation
|
# Docs
|
||||||
option(Build_Documentation "Build documentation" OFF)
|
if(Build_Documentation)
|
||||||
if(Build_Documentation AND NOT IS_SUBPROJECT)
|
|
||||||
if(NOT TRIQS_WITH_DOCUMENTATION)
|
|
||||||
message(WARNING "TRIQS was installed without documentation! Cannot build documentation.")
|
|
||||||
else()
|
|
||||||
message(STATUS "Documentation Build enabled")
|
|
||||||
add_subdirectory(doc)
|
add_subdirectory(doc)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
|
||||||
else()
|
|
||||||
message(WARNING "TRIQS was installed without Python support. Cannot build the Python Interface and Documentation.")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Additional configuration files
|
# Additional configuration files
|
||||||
add_subdirectory(share)
|
add_subdirectory(share)
|
||||||
|
|
||||||
|
|
||||||
# #############
|
# #############
|
||||||
# Debian Package
|
# Debian Package
|
||||||
|
|
||||||
@ -156,4 +156,3 @@ if(BUILD_DEBIAN_PACKAGE AND NOT IS_SUBPROJECT)
|
|||||||
set(CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS ON)
|
set(CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS ON)
|
||||||
include(CPack)
|
include(CPack)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
2
deps/CMakeLists.txt
vendored
2
deps/CMakeLists.txt
vendored
@ -54,6 +54,7 @@ external_dependency(GTest
|
|||||||
EXCLUDE_FROM_ALL
|
EXCLUDE_FROM_ALL
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(PythonSupport OR Build_Documentation)
|
||||||
# -- Cpp2Py --
|
# -- Cpp2Py --
|
||||||
external_dependency(Cpp2Py
|
external_dependency(Cpp2Py
|
||||||
GIT_REPO https://github.com/TRIQS/cpp2py
|
GIT_REPO https://github.com/TRIQS/cpp2py
|
||||||
@ -61,3 +62,4 @@ external_dependency(Cpp2Py
|
|||||||
GIT_TAG master
|
GIT_TAG master
|
||||||
EXCLUDE_FROM_ALL
|
EXCLUDE_FROM_ALL
|
||||||
)
|
)
|
||||||
|
endif()
|
1
deps/external_dependency.cmake
vendored
1
deps/external_dependency.cmake
vendored
@ -46,6 +46,7 @@ function(external_dependency)
|
|||||||
if(ARG_EXCLUDE_FROM_ALL)
|
if(ARG_EXCLUDE_FROM_ALL)
|
||||||
set(subdir_opts EXCLUDE_FROM_ALL)
|
set(subdir_opts EXCLUDE_FROM_ALL)
|
||||||
set(Build_Tests OFF)
|
set(Build_Tests OFF)
|
||||||
|
set(Build_Documentation OFF)
|
||||||
endif()
|
endif()
|
||||||
if(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${ARGV0})
|
if(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${ARGV0})
|
||||||
message(STATUS "Found sources for dependency ${ARGV0} at ${CMAKE_CURRENT_SOURCE_DIR}/${ARGV0}")
|
message(STATUS "Found sources for dependency ${ARGV0} at ${CMAKE_CURRENT_SOURCE_DIR}/${ARGV0}")
|
||||||
|
@ -2,6 +2,12 @@ add_subdirectory(cmake)
|
|||||||
|
|
||||||
if(NOT CMAKE_INSTALL_PREFIX STREQUAL TRIQS_ROOT AND NOT IS_SUBPROJECT)
|
if(NOT CMAKE_INSTALL_PREFIX STREQUAL TRIQS_ROOT AND NOT IS_SUBPROJECT)
|
||||||
|
|
||||||
|
if(PythonSupport)
|
||||||
|
set(EXPORT_PYTHON_PATH "export PYTHONPATH=${CMAKE_INSTALL_PREFIX}/${CPP2PY_PYTHON_LIB_DEST_ROOT}:$PYTHONPATH")
|
||||||
|
set(MODFILE_PYTHON_PATH "prepend-path PYTHONPATH $root/${CPP2PY_PYTHON_LIB_DEST_ROOT}")
|
||||||
|
|
||||||
|
endif()
|
||||||
|
|
||||||
configure_file(app4triqs.modulefile.in app4triqs.modulefile @ONLY)
|
configure_file(app4triqs.modulefile.in app4triqs.modulefile @ONLY)
|
||||||
configure_file(app4triqsvars.sh.in app4triqsvars.sh @ONLY)
|
configure_file(app4triqsvars.sh.in app4triqsvars.sh @ONLY)
|
||||||
|
|
||||||
|
@ -35,5 +35,5 @@ prepend-path PATH $root/bin
|
|||||||
prepend-path CPLUS_INCLUDE_PATH $root/include
|
prepend-path CPLUS_INCLUDE_PATH $root/include
|
||||||
prepend-path LIBRARY_PATH $root/lib
|
prepend-path LIBRARY_PATH $root/lib
|
||||||
prepend-path LD_LIBRARY_PATH $root/lib
|
prepend-path LD_LIBRARY_PATH $root/lib
|
||||||
prepend-path PYTHONPATH $root/@TRIQS_PYTHON_LIB_DEST_ROOT@
|
|
||||||
prepend-path CMAKE_PREFIX_PATH $root/lib/cmake/app4triqs
|
prepend-path CMAKE_PREFIX_PATH $root/lib/cmake/app4triqs
|
||||||
|
@MODFILE_PYTHON_PATH@
|
||||||
|
@ -6,5 +6,5 @@ export CPLUS_INCLUDE_PATH=@CMAKE_INSTALL_PREFIX@/include:$CPLUS_INCLUDE_PATH
|
|||||||
export PATH=@CMAKE_INSTALL_PREFIX@/bin:$PATH
|
export PATH=@CMAKE_INSTALL_PREFIX@/bin:$PATH
|
||||||
export LIBRARY_PATH=@CMAKE_INSTALL_PREFIX@/lib:$LIBRARY_PATH
|
export LIBRARY_PATH=@CMAKE_INSTALL_PREFIX@/lib:$LIBRARY_PATH
|
||||||
export LD_LIBRARY_PATH=@CMAKE_INSTALL_PREFIX@/lib:$LD_LIBRARY_PATH
|
export LD_LIBRARY_PATH=@CMAKE_INSTALL_PREFIX@/lib:$LD_LIBRARY_PATH
|
||||||
export PYTHONPATH=@CMAKE_INSTALL_PREFIX@/@CPP2PY_PYTHON_LIB_DEST_ROOT@:$PYTHONPATH
|
|
||||||
export CMAKE_PREFIX_PATH=@CMAKE_INSTALL_PREFIX@:$CMAKE_PREFIX_PATH
|
export CMAKE_PREFIX_PATH=@CMAKE_INSTALL_PREFIX@:$CMAKE_PREFIX_PATH
|
||||||
|
@EXPORT_PYTHON_PATH@
|
||||||
|
@ -25,4 +25,7 @@ message(STATUS "Found app4triqs-config.cmake with version @PROJECT_VERSION@, has
|
|||||||
# Was the Project built with Documentation?
|
# Was the Project built with Documentation?
|
||||||
set(APP4TRIQS_WITH_DOCUMENTATION @Build_Documentation@)
|
set(APP4TRIQS_WITH_DOCUMENTATION @Build_Documentation@)
|
||||||
|
|
||||||
|
# Was the Project built with PythonSupport?
|
||||||
|
set(APP4TRIQS_WITH_PYTHON_SUPPORT @PythonSupport@)
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
add_subdirectory(c++)
|
add_subdirectory(c++)
|
||||||
|
|
||||||
if(${TRIQS_WITH_PYTHON_SUPPORT})
|
if(PythonSupport)
|
||||||
add_subdirectory(python)
|
add_subdirectory(python)
|
||||||
endif()
|
endif()
|
||||||
|
Loading…
Reference in New Issue
Block a user