dft_tools/python/CMakeLists.txt

20 lines
639 B
CMake
Raw Permalink Normal View History

2013-08-07 16:30:09 +02:00
# where will the python end up in triqs?
set(PYTHON_LIB_DEST ${CPP2PY_PYTHON_LIB_DEST_ROOT}/triqs_dft_tools)
2013-07-23 19:49:42 +02:00
# site_customize for build
set(package_name "triqs_dft_tools")
2018-01-22 23:34:20 +01:00
# Create a temporary copy of the python modules so that we can run before installation with the test
FILE(GLOB PYTHON_SOURCES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.py )
foreach(f ${PYTHON_SOURCES})
2018-01-22 23:34:20 +01:00
configure_file(${f} ${f} COPYONLY)
endforeach()
# add version file
2017-12-07 15:56:05 +01:00
configure_file(version.py.in version.py @ONLY)
# install files
install(FILES ${PYTHON_SOURCES} ${CMAKE_CURRENT_BINARY_DIR}/version.py DESTINATION ${PYTHON_LIB_DEST})
add_subdirectory(converters)