-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
696 lines (637 loc) · 23.4 KB
/
CMakeLists.txt
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
# CMake < 3.13 cannot install external targets:
# https://gitlab.kitware.com/cmake/cmake/merge_requests/2152
# CMake < 3.14 generates incorrect dependency graphs with
# alias targets:
# https://gitlab.kitware.com/cmake/cmake/merge_requests/2521
# Policy CMP0048: The project() command manages VERSION variables
set(CMAKE_POLICY_DEFAULT_CMP0048 NEW)
project(qe
VERSION 6.7.1
DESCRIPTION "ESPRESSO: opEn-Source Package for Research in Electronic Structure, Simulation, and Optimization"
LANGUAGES Fortran C)
if(${qe_BINARY_DIR} STREQUAL ${qe_SOURCE_DIR})
message(FATAL_ERROR "QE source folder cannot be safely used as a build folder!")
endif()
# CMake < v3.18 cannot discover the ARM Performance Library
if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(aarch64.*|AARCH64.*|arm64.*|ARM64.*)")
if(CMAKE_VERSION VERSION_LESS 3.18.0)
message("-- CMake versions less than 3.18 cannot automatically discover the ARM Performance Library!")
endif()
endif()
##########################################################
# Define the paths for static libraries and executables
##########################################################
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${qe_BINARY_DIR}/lib
CACHE
PATH "Single output directory for building all libraries.")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${qe_BINARY_DIR}/bin
CACHE
PATH "Single output directory for building all executables.")
set(QE_TESTS_DIR ${qe_BINARY_DIR}/tests/bin)
###########################################################
# Build helpers
###########################################################
set(PROJECT_CMAKE ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
include_directories("${CMAKE_CURRENT_SOURCE_DIR}/include")
include(cmake/qeHelpers.cmake)
###########################################################
# Build Type
# Ensure that a specific, default build type is set when
# none has been explicitly set by the user
###########################################################
qe_ensure_build_type("Release")
###########################################################
# Modules
###########################################################
include(CheckFunctionExists)
# Must use GNUInstallDirs to install libraries into correct
# locations on all platforms.
include(GNUInstallDirs)
###########################################################
# Build Options
###########################################################
option(QE_ENABLE_CUDA
"enable CUDA acceleration on NVIDIA GPUs" OFF)
if(QE_ENABLE_CUDA)
option(QE_ENABLE_LAXLIB_CUSOLVER
"enable CUDA solver acceleration for LAXLib on NVIDIA GPUs" ON)
# OpenMP enable by default if CUDA is enable
option(QE_ENABLE_OPENMP
"enable distributed execution support via OpenMP" ON)
else()
option(QE_ENABLE_OPENMP
"enable distributed execution support via OpenMP" OFF)
endif()
option(QE_ENABLE_MPI
"enable distributed execution support via MPI" ON)
option(QE_ENABLE_TEST
"enable unit tests" ON)
option(QE_ENABLE_TRACE
"enable execution tracing output" OFF)
option(QE_ENABLE_PROFILE_NVTX
"enable execution of NVidia profiler plugin" OFF)
option(QE_ENABLE_MPI_INPLACE
"enable inplace MPI calls (ignored when QE_ENABLE_MPI=OFF)" OFF)
option(QE_ENABLE_MPI_MODULE
"use MPI via Fortran module instead of mpif.h header inclusion" OFF)
option(QE_ENABLE_BARRIER
"enable global synchronization between execution units" OFF)
option(QE_LAPACK_INTERNAL
"enable internal reference LAPACK" OFF)
option(QE_ENABLE_SCALAPACK
"enable SCALAPACK execution units" OFF)
option(QE_ENABLE_ELPA
"enable ELPA execution units" OFF)
option(QE_ENABLE_LIBXC
"enable LIBXC execution units" OFF)
option(QE_ENABLE_HDF5
"enable HDF5 data collection" OFF)
option(QE_ENABLE_DOC
"enable documentation building" OFF)
set(QE_FFTW_VENDOR "AUTO" CACHE
STRING "select a specific FFTW library [Intel_DFTI, Intel_FFTW3, ArmPL, IBMESSL, FFTW3, Internal]")
# TODO change all ifdefs throughout code base to match
# cmake options
# TODO symbols beginning with '__' followed by a capital
# character are reserved for standard library use (at
# least in C, not sure about Fortran), change all feature
# macros to avoid weird behaviors
# Disable all configuration headers used to be generated
# by configure (see <qe>/include/)
qe_add_global_compile_definitions(QE_NO_CONFIG_H)
if(QE_ENABLE_CUDA)
qe_add_global_compile_definitions(__CUDA)
endif()
if(QE_ENABLE_TRACE)
qe_add_global_compile_definitions(__TRACE)
endif()
if(QE_ENABLE_PROFILE_NVTX)
qe_add_global_compile_definitions(__PROFILE_NVTX)
endif()
if(QE_ENABLE_MPI_INPLACE)
qe_add_global_compile_definitions(__USE_INPLACE_MPI)
endif()
if(QE_ENABLE_MPI_MODULE)
qe_add_global_compile_definitions(__MPI_MODULE)
endif()
if(QE_ENABLE_BARRIER)
qe_add_global_compile_definitions(__USE_BARRIER)
endif()
if(QE_ENABLE_MPI)
# OMPI_SKIP_MPICXX: skip CXX APIs on openmpi, cause trouble to C APIs
qe_add_global_compile_definitions(__MPI OMPI_SKIP_MPICXX)
endif()
if(QE_ENABLE_SCALAPACK)
qe_add_global_compile_definitions(__SCALAPACK)
endif()
if(QE_ENABLE_HDF5)
qe_add_global_compile_definitions(__HDF5)
endif()
# Feature checks
check_function_exists(mallinfo HAVE_MALLINFO)
if(HAVE_MALLINFO)
qe_add_global_compile_definitions(HAVE_MALLINFO)
endif()
# Check options consistency
if(QE_ENABLE_ELPA AND NOT QE_ENABLE_SCALAPACK)
message(FATAL_ERROR "ELPA requires SCALAPACK support, enable it with '-DQE_ENABLE_SCALAPACK=ON' or disable ELPA with '-DQE_ENABLE_ELPA=OFF'")
endif()
if(QE_ENABLE_SCALAPACK AND NOT QE_ENABLE_MPI)
message(FATAL_ERROR "SCALAPACK requires MPI support, enable it with '-DQE_ENABLE_MPI=ON' or disable SCALAPACK with '-DQE_ENABLE_SCALAPACK=OFF'")
endif()
if(QE_ENABLE_CUDA AND NOT CMAKE_Fortran_COMPILER_ID MATCHES "PGI")
message(FATAL_ERROR "PGI compiler is mandatory when CUDA is enable due QE is based on CUDA Fortran language")
endif()
if(QE_ENABLE_LAXLIB_CUSOLVER AND (NOT QE_ENABLE_CUDA))
message(FATAL_ERROR "CUDA Solver for LAXLib requires CUDA support, enable it with '-DQE_ENABLE_CUDA=ON' or disable CUDA Solver for LAXLib with '-DQE_ENABLE_LAXLIB_CUSOLVER=OFF'")
endif()
# if(QE_ENABLE_HDF5 AND NOT QE_ENABLE_MPI)
# message(FATAL_ERROR "HDF5 requires MPI support, enable it with '-DQE_ENABLE_MPI=ON' or disable HDF5 with '-DQE_ENABLE_HDF5=OFF'")
# endif()
###########################################################
# language standard requirements
###########################################################
# TODO need to require all compilers using the same one
if(CMAKE_C_COMPILER_ID MATCHES "PGI")
set(CMAKE_C_STANDARD 11)
set(CMAKE_C_STANDARD_REQUIRED ON)
set(CMAKE_C_EXTENSIONS OFF)
endif()
############################################################
## Compiler vendor specific options
############################################################
if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU")
include(${PROJECT_CMAKE}/GNUFortranCompiler.cmake)
elseif(CMAKE_Fortran_COMPILER_ID MATCHES "PGI")
include(${PROJECT_CMAKE}/NVFortranCompiler.cmake)
elseif(CMAKE_Fortran_COMPILER_ID MATCHES "XL")
include(${PROJECT_CMAKE}/IBMFortranCompiler.cmake)
endif()
###########################################################
# CUDA
###########################################################
if(QE_ENABLE_CUDA OR QE_ENABLE_PROFILE_NVTX)
if(CMAKE_Fortran_COMPILER_ID MATCHES "PGI")
add_library(CUDA::cufft INTERFACE IMPORTED)
set_target_properties(CUDA::cufft PROPERTIES INTERFACE_LINK_LIBRARIES "-Mcudalib=cufft")
add_library(CUDA::cublas INTERFACE IMPORTED)
set_target_properties(CUDA::cublas PROPERTIES INTERFACE_LINK_LIBRARIES "-Mcudalib=cublas")
add_library(CUDA::cusolver INTERFACE IMPORTED)
set_target_properties(CUDA::cusolver PROPERTIES INTERFACE_LINK_LIBRARIES "-Mcudalib=cusolver")
else()
find_package(CUDAToolkit REQUIRED)
endif()
endif(QE_ENABLE_CUDA OR QE_ENABLE_PROFILE_NVTX)
###########################################################
# OpenMP
# The following targets will be defined:
add_library(qe_openmp_fortran INTERFACE)
add_library(qe_openmp_c INTERFACE)
qe_install_targets(qe_openmp_fortran qe_openmp_c)
###########################################################
if(QE_ENABLE_OPENMP)
find_package(OpenMP REQUIRED Fortran C)
target_link_libraries(qe_openmp_fortran
INTERFACE OpenMP::OpenMP_Fortran)
target_link_libraries(qe_openmp_c
INTERFACE OpenMP::OpenMP_C)
endif(QE_ENABLE_OPENMP)
###########################################################
# MPI
# The following targets will be defined:
add_library(qe_mpi_fortran INTERFACE)
qe_install_targets(qe_mpi_fortran)
###########################################################
if(QE_ENABLE_MPI)
find_package(MPI REQUIRED Fortran)
target_link_libraries(qe_mpi_fortran
INTERFACE MPI::MPI_Fortran)
endif(QE_ENABLE_MPI)
###########################################################
# Lapack
# The following targets will be defined:
add_library(qe_lapack INTERFACE)
qe_install_targets(qe_lapack)
###########################################################
if(NOT QE_LAPACK_INTERNAL)
if(NOT BLA_VENDOR)
if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64.*")
message(STATUS "Trying to find LAPACK from Intel MKL")
if(QE_ENABLE_OPENMP)
SET(BLA_VENDOR Intel10_64lp)
else()
SET(BLA_VENDOR Intel10_64lp_seq)
endif()
find_package(LAPACK)
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "i686.*|i386.*|x86.*")
message(STATUS "Trying to find LAPACK from Intel MKL - 32bit")
SET(BLA_VENDOR Intel10_32)
find_package(LAPACK)
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(aarch64.*|AARCH64.*|arm64.*|ARM64.*)")
message(STATUS "Trying to find LAPACK from ARM Performance Library")
if(QE_ENABLE_OPENMP)
SET(BLA_VENDOR Arm_mp)
else()
SET(BLA_VENDOR Arm)
endif()
find_package(LAPACK)
endif()
if(NOT LAPACK_FOUND)
message(STATUS "Trying to find alternative LAPACK libraries")
SET(BLA_VENDOR All)
find_package(LAPACK)
endif()
else()
find_package(LAPACK)
endif()
if(LAPACK_FOUND)
list(APPEND _lapack_libs
${BLAS_LIBRARIES}
${BLAS_LINKER_FLAGS}
${LAPACK_LIBRARIES}
${LAPACK_LINKER_FLAGS})
list(REMOVE_DUPLICATES "${_lapack_libs}")
message(STATUS "Found LAPACK: ${_lapack_libs}")
target_link_libraries(qe_lapack INTERFACE ${_lapack_libs})
else()
message(FATAL_ERROR "Failed to find a complete set of external BLAS/LAPACK library by FindLAPACK. "
"Variables controlling FindLAPACK can be found at CMake online documentation. "
"Alternatively, '-DQE_LAPACK_INTERNAL=ON' may be used to enable reference LAPACK "
"at a performance loss compared to optimized libraries.")
endif()
else()
message(WARNING "Internal reference LAPACK is enabled! It is less performant than vendor optimized libraries.")
if(CMAKE_Fortran_COMPILER_ID MATCHES "XL")
message(FATAL_ERROR "IBM XL compilers cannot build internal LAPACK with QE "
"due to the conflict in flags for free vs fixed format. "
"Please use an optimized LAPACK or build internal reference LAPACK separately.")
endif()
message(STATUS "Installing LAPACK via submodule")
qe_git_submodule_update(external/lapack)
add_subdirectory(external/lapack EXCLUDE_FROM_ALL)
target_link_libraries(qe_lapack INTERFACE lapack)
qe_fix_fortran_modules(lapack)
qe_install_targets(lapack)
endif()
###########################################################
# SCALAPACK
# The following targets will be defined:
add_library(qe_scalapack INTERFACE)
qe_install_targets(qe_scalapack)
###########################################################
if(QE_ENABLE_SCALAPACK)
find_package(SCALAPACK REQUIRED QUIET)
message(STATUS "Found SCALAPACK: ${SCALAPACK_LIBRARIES};${SCALAPACK_LINKER_FLAGS}")
target_link_libraries(qe_scalapack
INTERFACE
${SCALAPACK_LIBRARIES}
${SCALAPACK_LINKER_FLAGS})
endif(QE_ENABLE_SCALAPACK)
###########################################################
# ELPA
# The following targets will be defined:
add_library(qe_elpa INTERFACE)
qe_install_targets(qe_elpa)
###########################################################
if(QE_ENABLE_ELPA)
find_package(ELPA REQUIRED)
# Check if ELPA version is compatible with QE
if(ELPA_VERSION_STRING VERSION_GREATER_EQUAL "2018.11")
set(QE_ELPA_DEFINITIONS __ELPA)
elseif(ELPA_VERSION_STRING VERSION_GREATER_EQUAL "2016.11")
set(QE_ELPA_DEFINITIONS __ELPA_2016)
elseif(ELPA_VERSION_STRING VERSION_GREATER_EQUAL "2015")
set(QE_ELPA_DEFINITIONS __ELPA_2015)
else()
message(FATAL_ERROR "ELPA verion ${ELPA_VERSION_STRING} is not supported.")
endif()
message(STATUS "Add ELPA flag : ${QE_ELPA_DEFINITIONS}")
qe_add_global_compile_definitions(${QE_ELPA_DEFINITIONS})
# Looking for module directory
file(GLOB_RECURSE ELPA_MODS_FILES "${ELPA_INCLUDE_DIRS}/*.mod" "${ELPA_INCLUDE_DIRS}/../modules/*.mod")
if(ELPA_MODS_FILES)
list(GET ELPA_MODS_FILES 0 ELPA_MOD)
get_filename_component(ELPA_MOD_DIR "${ELPA_MOD}" PATH)
set(ELPA_INCLUDE_DIRS "${ELPA_MOD_DIR};${ELPA_INCLUDE_DIRS}")
else()
message(FATAL_ERROR "Fortran module directory of ELPA not found!")
endif()
# Add link libraries and include directories
target_link_libraries(qe_elpa
INTERFACE
${ELPA_LIBRARIES}
${ELPA_LIBRARIES_DEP}
${ELPA_LINKER_FLAGS})
target_include_directories(qe_elpa
INTERFACE
${ELPA_INCLUDE_DIRS}
${ELPA_INCLUDE_DIRS_DEP})
endif(QE_ENABLE_ELPA)
###########################################################
# LIBXC
## The following targets will be defined:
add_library(qe_external_libxc INTERFACE)
qe_install_targets(qe_external_libxc)
###########################################################
if(QE_ENABLE_LIBXC)
target_compile_definitions(qe_external_libxc INTERFACE "__LIBXC")
find_package(Libxc COMPONENTS Fortran)
if(${Libxc_FOUND})
if (${Libxc_VERSION} VERSION_GREATER_EQUAL "5.1.2" )
message(STATUS "Libxc version ${Libxc_VERSION} found.")
else()
message(FATAL_ERROR "Libxc version ${Libxc_VERSION} found. "
"CMake compilation of QE tested for libxc v5.1.2 or later only.")
endif()
target_link_libraries(qe_external_libxc INTERFACE Libxc::xcf03)
target_include_directories(qe_external_libxc INTERFACE ${Libxc_INCLUDE_DIR})
target_compile_definitions(qe_external_libxc INTERFACE ${Libxc_DEFINITIONS})
else()
message(FATAL_ERROR "Failed to find Libxc package (>=5.1.2) with Fortran enabled.")
endif()
endif(QE_ENABLE_LIBXC)
###########################################################
# HDF5
# The following targets will be defined:
add_library(qe_hdf5_fortran INTERFACE)
add_library(qe_hdf5_c INTERFACE)
qe_install_targets(qe_hdf5_fortran qe_hdf5_c)
###########################################################
# PROFILERS LIBRARIES
# the target for profiler libray will be defined if
# some profiler is enabled
add_library(qe_ext_prof_tool INTERFACE)
qe_install_targets(qe_ext_prof_tool)
###########################################################
# this should work with nvfortran
if(QE_ENABLE_PROFILE_NVTX)
target_link_libraries(qe_ext_prof_tool
INTERFACE
CUDA::nvToolsExt)
endif(QE_ENABLE_PROFILE_NVTX)
###########################################################
if(QE_ENABLE_HDF5)
if(QE_ENABLE_MPI)
option(HDF5_PREFER_PARALLEL "Prefer parallel HDF5" ON)
endif()
find_package(HDF5 REQUIRED Fortran C)
if(NOT HDF5_FOUND)
message(FATAL_ERROR "HDF5 Fortran interface has not been found!")
endif()
if (NOT HDF5_IS_PARALLEL OR NOT QE_ENABLE_MPI)
message(STATUS "Serial HDF5 enabled!")
qe_add_global_compile_definitions(__HDF5_SERIAL)
else()
message(STATUS "Parallel HDF5 enabled!")
endif()
target_link_libraries(qe_hdf5_fortran
INTERFACE
${HDF5_Fortran_LIBRARIES}
${HDF5_Fortran_HL_LIBRARIES})
target_include_directories(qe_hdf5_fortran
INTERFACE
${HDF5_Fortran_INCLUDE_DIRS})
target_compile_definitions(qe_hdf5_fortran
INTERFACE
${HDF5_Fortran_DEFINITIONS})
target_link_libraries(qe_hdf5_c
INTERFACE
${HDF5_C_LIBRARIES}
${HDF5_C_HL_LIBRARIES})
target_include_directories(qe_hdf5_c
INTERFACE
${HDF5_C_INCLUDE_DIRS})
target_compile_definitions(qe_hdf5_c
INTERFACE
${HDF5_C_DEFINITIONS})
endif(QE_ENABLE_HDF5)
###########################################################
# Tests
# Any executable target marked as test runner via
# 'add_test()' will be run by the 'test' make target
###########################################################
if(QE_ENABLE_TEST)
enable_testing()
endif(QE_ENABLE_TEST)
###########################################################
# Components
###########################################################
add_subdirectory(external)
add_subdirectory(clib)
add_subdirectory(FFTXlib)
add_subdirectory(UtilXlib)
add_subdirectory(Modules)
add_subdirectory(LAXlib)
add_subdirectory(XClib)
add_subdirectory(KS_Solvers)
add_subdirectory(dft-d3)
add_subdirectory(PW)
add_subdirectory(CPV)
add_subdirectory(atomic)
add_subdirectory(upflib)
add_subdirectory(COUPLE)
add_subdirectory(LR_Modules)
add_subdirectory(PHonon)
add_subdirectory(PP)
add_subdirectory(EPW)
add_subdirectory(GWW)
add_subdirectory(HP)
add_subdirectory(NEB)
add_subdirectory(PlotPhon)
add_subdirectory(PWCOND)
add_subdirectory(QHA)
add_subdirectory(TDDFPT)
add_subdirectory(XSpectra)
if(QE_ENABLE_DOC)
add_subdirectory(Doc)
endif()
###########################################################
# Tests
###########################################################
if(QE_ENABLE_TEST)
add_subdirectory(test-suite)
endif()
###########################################################
# Pkg-config
###########################################################
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/cmake/quantum_espresso.pc.in
${CMAKE_CURRENT_BINARY_DIR}/quantum_espresso.pc
@ONLY)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/quantum_espresso.pc
DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
###########################################################
# Exports
###########################################################
install(EXPORT qeTargets
FILE qeTargets.cmake
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/qe)
include(CMakePackageConfigHelpers)
write_basic_package_version_file(
qeConfigVersion.cmake
VERSION ${PACKAGE_VERSION}
COMPATIBILITY AnyNewerVersion)
configure_file(cmake/qeConfig.cmake.in
${CMAKE_CURRENT_BINARY_DIR}/qeConfig.cmake @ONLY)
install(FILES
${CMAKE_CURRENT_BINARY_DIR}/qeConfigVersion.cmake
${CMAKE_CURRENT_BINARY_DIR}/qeConfig.cmake
DESTINATION
${CMAKE_INSTALL_LIBDIR}/cmake/qe)
###########################################################
# Dependency graph generation
# Defines the custom target 'depgraph'
###########################################################
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cmake/CMakeGraphVizOptions.cmake
${CMAKE_CURRENT_BINARY_DIR}/CMakeGraphVizOptions.cmake COPYONLY)
add_custom_target(depgraph
"${CMAKE_COMMAND}" "--graphviz=depgraph" .
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}")
###########################################################
# Custom make targets
###########################################################
add_custom_target(pw
DEPENDS
qe_pw_exe
qe_pw_tools_ibrav2cell_exe
qe_pw_tools_cell2ibrav_exe
qe_pw_tools_ev_exe
qe_pw_tools_kpoints_exe
qe_pw_tools_pwi2xsf_exe
COMMENT
"basic code for scf, structure optimization, MD")
add_custom_target(ph
DEPENDS
qe_phonon_ph_exe
qe_phonon_dynmat_exe
qe_phonon_q2r_exe
qe_phonon_matdyn_exe
qe_phonon_q2qstar_exe
qe_phonon_lambda_exe
qe_phonon_alpha2f_exe
qe_phonon_epa_exe
qe_phonon_fqha_exe
qe_plotphon_kforbands_exe
qe_plotphon_bandstognuplot_exe
qe_plotphon_eminmax_exe
COMMENT
"phonon code, Gamma-only and third-order derivatives")
add_custom_target(hp
DEPENDS
qe_hp_exe
COMMENT
"calculation of the Hubbard parameters from DFPT")
add_custom_target(pwcond
DEPENDS
qe_pwcond_exe
COMMENT
"ballistic conductance")
add_custom_target(neb
DEPENDS
qe_neb_exe
qe_neb_pathinterpolation_exe
COMMENT
"code for Nudged Elastic Band method")
add_custom_target(pp
DEPENDS
qe_pp_exe
qe_pp_opengrid_exe
qe_pp_average_exe
qe_pp_bands_exe
qe_pp_dos_exe
qe_pp_pawplot_exe
qe_pp_planavg_exe
qe_pp_plotband_exe
qe_pp_plotproj_exe
qe_pp_plotrho_exe
qe_pp_pmw_exe
qe_pp_xctest_exe
qe_pp_projwfc_exe
qe_pp_pw2wannier90_exe
qe_pp_pw2critic_exe
qe_pp_wfck2r_exe
qe_pp_initial_state_exe
qe_pp_pw2gw_exe
qe_pp_sumpdos_exe
qe_pp_epsilon_exe
qe_pp_wannierham_exe
qe_pp_wannierplot_exe
qe_pp_molecularpdos_exe
qe_pp_pw2bgw_exe
qe_pp_fermivelocity_exe
qe_pp_fermisurface_exe
qe_pp_fermiproj_exe
qe_pp_ppacf_exe
COMMENT
"postprocessing programs")
add_custom_target(pwall
DEPENDS
pw
ph
pp
pwcond
neb
COMMENT
"same as \"make pw ph pp pwcond neb\"")
add_custom_target(cp
DEPENDS
qe_cpv_exe
qe_cpv_manycp_exe
qe_cpv_cppp_exe
qe_cpv_wfdd_exe
COMMENT
"CP code: Car-Parrinello molecular dynamics")
add_custom_target(tddfpt
DEPENDS
qe_tddfpt_turbolanczos_exe
qe_tddfpt_turbodavidson_exe
qe_tddfpt_turboeels_exe
qe_tddfpt_calculatespectrum_exe
COMMENT
"time dependent dft code")
add_custom_target(gwl
DEPENDS
qe_gww_util_grap_exe
qe_gww_util_abcoefftoeps_exe
qe_gww_util_memorypw4gww_exe
qe_gww_bse_bse_main_exe
qe_gww_gww_exe
qe_gww_gww_fit_exe
qe_gww_head_exe
qe_gww_simple_bse_exe
qe_gww_simple_ip_exe
COMMENT
"GW with Lanczos chains")
add_custom_target(ld1
DEPENDS
qe_atomic_exe
COMMENT
"utilities for pseudopotential generation")
add_custom_target(upf
DEPENDS
#Library
qe_upflib
#Executables
qe_upflib_virtual_v2_exe
qe_upflib_upfconv_exe
COMMENT
"utilities for pseudopotential conversion")
add_custom_target(xspectra
DEPENDS
qe_xspectra_exe
qe_xspectra_spectracorrection_exe
qe_xspectra_molecularnexafs_exe
COMMENT
"X-ray core-hole spectroscopy calculations")
add_custom_target(couple
DEPENDS
qe_couple
COMMENT
"library interface for coupling to external codes")
add_custom_target(epw
DEPENDS
qe_epw_exe
COMMENT
"electron-Phonon Coupling with wannier functions")