forked from deepmodeling/abacus-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
40 lines (35 loc) · 716 Bytes
/
Copy pathCMakeLists.txt
File metadata and controls
40 lines (35 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
if (ENABLE_LIBRI)
add_subdirectory(module_exx_symmetry)
list(APPEND objects
Matrix_Orbs11.cpp
Matrix_Orbs21.cpp
Matrix_Orbs22.cpp
RI_2D_Comm.cpp
Mix_DMk_2D.cpp
)
if(ENABLE_LCAO)
list(APPEND objects
conv_coulomb_pot_k.cpp
exx_abfs-abfs_index.cpp
exx_abfs-construct_orbs.cpp
exx_abfs-io.cpp
exx_abfs-jle.cpp
ABFs_Construct-PCA.cpp
exx_opt_orb-print.cpp
exx_opt_orb.cpp
)
endif()
add_library(
ri
OBJECT
${objects}
)
if(BUILD_TESTING)
if(ENABLE_MPI)
add_subdirectory(test)
endif()
endif()
if(ENABLE_COVERAGE)
add_coverage(ri)
endif()
endif()