mirror of
https://github.com/LCPQ/quantum_package
synced 2024-12-21 20:03:53 +01:00
Fix: Pass user lib (the one in conf.cfg) to IRP.f90 (#246)
This commit is contained in:
parent
f9e473d703
commit
207215e8f7
@ -97,7 +97,9 @@ def ninja_create_env_variable(pwd_config_file):
|
||||
l_string.append(str_)
|
||||
|
||||
lib_lapack = get_compilation_option(pwd_config_file, "LAPACK_LIB")
|
||||
str_lib = " ".join([LIB, lib_lapack, EZFIO_LIB, ZMQ_LIB])
|
||||
lib_usr = get_compilation_option(pwd_config_file, "LIB")
|
||||
|
||||
str_lib = " ".join([LIB, lib_lapack, EZFIO_LIB, ZMQ_LIB, lib_usr])
|
||||
l_string.append("LIB = {0} ".format(str_lib))
|
||||
|
||||
l_string.append("")
|
||||
|
Loading…
Reference in New Issue
Block a user