2018-03-22 18:11:39 +01:00
|
|
|
# Build the python module
|
|
|
|
add_cpp2py_module(toto_module)
|
|
|
|
target_link_libraries(toto_module app4triqs_c)
|
|
|
|
|
|
|
|
# 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)
|
|
|
|
list(FILTER python_sources EXCLUDE REGEX "_desc.py")
|
|
|
|
foreach(file ${python_sources})
|
|
|
|
configure_file(${file} ${file} COPYONLY)
|
2018-03-22 18:11:39 +01:00
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# Install python module to proper location
|
2019-04-03 00:07:03 +02:00
|
|
|
set(PYTHON_LIB_DEST ${TRIQS_PYTHON_LIB_DEST_ROOT}/app4triqs)
|
2018-03-22 18:11:39 +01:00
|
|
|
install(TARGETS toto_module DESTINATION ${PYTHON_LIB_DEST})
|
2019-04-03 00:07:03 +02:00
|
|
|
install(FILES ${python_sources} ${CMAKE_CURRENT_BINARY_DIR}/version.py DESTINATION ${PYTHON_LIB_DEST})
|