Skip to content

Commit bc7c14c

Browse files
committed
add the CMakefile
1 parent 4a20f7b commit bc7c14c

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

source/Makefile.Objects

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ VPATH=./src_global:\
3535
./module_hsolver/module_pexsi:\
3636
./module_elecstate:\
3737
./module_elecstate/kernels:\
38-
./module_elecstate/potentials:\
38+
./module_elecstate/module_pot:\
3939
./module_elecstate/module_charge:\
4040
./module_elecstate/module_dm:\
4141
./module_psi:\

source/module_elecstate/CMakeLists.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ list(APPEND objects
88
elecstate_pw.cpp
99
elecstate_pw_sdft.cpp
1010
elecstate_pw_cal_tau.cpp
11-
potentials/gatefield.cpp
12-
potentials/efield.cpp
13-
potentials/H_Hartree_pw.cpp
14-
potentials/pot_xc.cpp
15-
potentials/pot_local.cpp
16-
potentials/pot_local_paw.cpp
17-
potentials/potential_new.cpp
18-
potentials/potential_types.cpp
11+
module_pot/gatefield.cpp
12+
module_pot/efield.cpp
13+
module_pot/H_Hartree_pw.cpp
14+
module_pot/pot_xc.cpp
15+
module_pot/pot_local.cpp
16+
module_pot/pot_local_paw.cpp
17+
module_pot/potential_new.cpp
18+
module_pot/potential_types.cpp
1919
module_charge/charge.cpp
2020
module_charge/charge_init.cpp
2121
module_charge/charge_mpi.cpp
@@ -42,7 +42,7 @@ if(ENABLE_LCAO)
4242
list(APPEND objects
4343
elecstate_lcao.cpp
4444
elecstate_lcao_cal_tau.cpp
45-
potentials/H_TDDFT_pw.cpp
45+
module_pot/H_TDDFT_pw.cpp
4646
module_dm/density_matrix.cpp
4747
module_dm/density_matrix_io.cpp
4848
module_dm/cal_dm_psi.cpp

source/module_elecstate/elecstate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include "module_elecstate/module_charge/charge.h"
66
#include "module_parameter/parameter.h"
77
#include "module_psi/psi.h"
8-
#include "potentials/potential_new.h"
8+
#include "module_pot/potential_new.h"
99

1010
namespace elecstate
1111
{

source/module_elecstate/test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ AddTest(
7575
AddTest(
7676
TARGET potentials_new
7777
LIBS parameter ${math_libs} base device planewave_serial
78-
SOURCES potential_new_test.cpp ../potentials/potential_new.cpp
78+
SOURCES potential_new_test.cpp ../module_pot/potential_new.cpp
7979
)
8080

8181
AddTest(

source/module_io/write_vxc_lip.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include "module_psi/psi.h"
88
#include "module_cell/unitcell.h"
99
#include "module_cell/klist.h"
10-
#include "module_elecstate/potentials/potential_new.h"
10+
#include "module_elecstate/module_pot/potential_new.h"
1111
#include "module_io/write_HS.h"
1212
#include <type_traits>
1313

source/module_lr/esolver_lrtd_lcao.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "utils/lr_util.h"
44
#include "hamilt_casida.h"
55
#include "hamilt_ulr.hpp"
6-
#include "module_lr/module_pot/pot_hxc_lrtd.h"
6+
#include "module_lr/potentials/pot_hxc_lrtd.h"
77
#include "module_lr/hsolver_lrtd.hpp"
88
#include "module_lr/lr_spectrum.h"
99
#include <memory>

source/module_lr/esolver_lrtd_lcao.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include "module_hamilt_lcao/module_gint/gint_k.h"
1616
#include "module_hamilt_lcao/module_gint/grid_technique.h"
1717
#include "module_elecstate/module_dm/density_matrix.h"
18-
#include "module_lr/module_pot/pot_hxc_lrtd.h"
18+
#include "module_lr/potentials/pot_hxc_lrtd.h"
1919
#include "module_lr/hamilt_casida.h"
2020
#ifdef __EXX
2121
// #include <RI/physics/Exx.h>

source/module_lr/operator_casida/operator_lr_hxc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include "module_lr/utils/gint_template.h"
55
#include "module_hamilt_lcao/module_gint/grid_technique.h"
66
#include "module_elecstate/module_dm/density_matrix.h"
7-
#include "module_lr/module_pot/pot_hxc_lrtd.h"
7+
#include "module_lr/potentials/pot_hxc_lrtd.h"
88
#include "module_lr/utils/lr_util.h"
99
#include "module_lr/utils/lr_util_hcontainer.h"
1010
namespace LR

0 commit comments

Comments
 (0)