2018-03-22 18:11:39 +01:00
|
|
|
# Configure the version
|
|
|
|
configure_file(version.py.in version.py)
|
|
|
|
|
|
|
|
# All Python files. Copy them in the build dir to have a complete package for the tests.
|
2019-04-03 00:07:03 +02:00
|
|
|
file(GLOB_RECURSE python_sources RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.py)
|
2019-04-25 19:54:23 +02:00
|
|
|
file(GLOB_RECURSE wrap_generators RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *_desc.py)
|
|
|
|
list(REMOVE_ITEM python_sources "${wrap_generators}")
|
2019-04-03 00:07:03 +02:00
|
|
|
foreach(file ${python_sources})
|
|
|
|
configure_file(${file} ${file} COPYONLY)
|
2018-03-22 18:11:39 +01:00
|
|
|
endforeach()
|
|
|
|
|
2020-06-11 00:26:34 +02:00
|
|
|
# Install python files to proper location
|
|
|
|
set(PYTHON_LIB_DEST ${TRIQS_PYTHON_LIB_DEST_ROOT}/${PROJECT_NAME})
|
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/version.py DESTINATION ${PYTHON_LIB_DEST})
|
|
|
|
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} DESTINATION ${TRIQS_PYTHON_LIB_DEST_ROOT} FILES_MATCHING PATTERN "*.py" PATTERN "*_desc.py" EXCLUDE)
|
|
|
|
|
|
|
|
# Build and install any python modules
|
2019-09-04 23:34:00 +02:00
|
|
|
foreach(gen ${wrap_generators})
|
2020-06-08 20:49:39 +02:00
|
|
|
string(REPLACE "_desc.py" "" gen ${gen})
|
|
|
|
get_filename_component(module_name ${gen} NAME_WE)
|
|
|
|
get_filename_component(module_dir ${gen} DIRECTORY)
|
|
|
|
add_cpp2py_module(NAME ${module_name} DIRECTORY ${module_dir})
|
2021-01-22 20:49:47 +01:00
|
|
|
add_library(${PROJECT_NAME}::${module_name} ALIAS ${module_name})
|
2020-06-04 17:47:23 +02:00
|
|
|
target_link_libraries(${module_name} ${PROJECT_NAME}_c triqs_py)
|
2020-06-11 00:26:34 +02:00
|
|
|
install(TARGETS ${module_name} DESTINATION ${PYTHON_LIB_DEST}/${module_dir})
|
2019-09-04 23:34:00 +02:00
|
|
|
endforeach()
|