3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-30 00:44:34 +02:00
dft_tools/share/app4triqs.modulefile.in
2018-03-22 18:16:10 +01:00

40 lines
1.3 KiB
Plaintext

#%Module1.0
#
# To be installed as ${MODULEPATH}/app4triqs/@APP4TRIQS_VERSION@
set name app4triqs
set version @APP4TRIQS_VERSION@
set root @CMAKE_INSTALL_PREFIX@
set git_hash @APP4TRIQS_GIT_HASH@
set url "https://github.com/TRIQS/app4triqs"
set description "An example application using cpp2py and triqs."
module-whatis "$description"
proc ModulesHelp { } {
global description url version git_hash
puts stderr "Description: $description"
puts stderr "URL: $url"
puts stderr "Version: $version"
puts stderr "Git hash: $git_hash"
}
# You may need to edit the next line if cpp2py module is installed
# under a different name in your setup.
prereq cpp2py/@CPP2PY_VERSION@
# Only one version of app4triqs can be loaded at a time
conflict $name
setenv APP4TRIQS_ROOT $root
setenv APP4TRIQS_VERSION $version
setenv APP4TRIQS_GIT_HASH $git_hash
prepend-path PATH $root/bin
prepend-path CPATH $root/include
prepend-path LIBRARY_PATH $root/lib
prepend-path LD_LIBRARY_PATH $root/lib
prepend-path PYTHONPATH $root/@CPP2PY_PYTHON_LIB_DEST_ROOT@
prepend-path CMAKE_PREFIX_PATH $root/share/cmake