9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-01 18:25:17 +02:00

Add LIB files in plugins

This commit is contained in:
Anthony Scemama 2021-05-05 17:01:21 +02:00
parent cfd41fc13d
commit 2546cdd317
2 changed files with 15 additions and 6 deletions

View File

@ -75,7 +75,7 @@
- Added ~V_ne_psi_energy~
- Added ~h_core_guess~ routine
- Fixed Laplacians in real space (indices)
-
- Added LIB file to add extra libs in plugin
ao_one_e_integral_zero
banned_excitations

View File

@ -108,6 +108,15 @@ def ninja_create_env_variable(pwd_config_file):
lib_usr = get_compilation_option(pwd_config_file, "LIB")
str_lib = " ".join([lib_lapack, EZFIO_LIB, ZMQ_LIB, LIB, lib_usr])
# Read all LIB files in modules
targetPattern = r"src/**/LIB"
for libfile in glob.glob(targetPattern):
content = ""
with open(libfile,'r') as f:
content = f.read()
str_lib += " "+content
l_string.append("LIB = {0} ".format(str_lib))
l_string.append("")