File: External

package info (click to toggle)
mpqc3 0.0~git20170114-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 148,788 kB
  • ctags: 40,140
  • sloc: cpp: 545,687; ansic: 13,220; perl: 5,065; fortran: 1,990; lisp: 1,269; python: 717; yacc: 392; sh: 304; f90: 238; lex: 184; xml: 182; makefile: 106
file content (36 lines) | stat: -rw-r--r-- 696 bytes parent folder | download | duplicates (2)
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
# -*- mode: cmake -*-

cmake_minimum_required(VERSION 2.8)

add_custom_target(External)

include(external/PAPI)
include(external/MPI)
include(external/Lapack)
include(external/Eigen)
include(external/OpenBabel2)

if (MPQC_NEW_FEATURES)

  # as of 2.2.0 Libint requires C++11 ... cleanest to make it part of "new" features
  include(external/Libint)
  if (HAVE_LIBINT2)
    include(external/Psi3)
  endif()

  include(external/TiledArray)
  include(external/Python)
  include(external/Boost)
  
  # Right now only CI depends on HDF5, minimize deps
  if (MPQC_CI)
    include(external/HDF5)
    # may be serial build
    if (HAVE_MPI)
      include(external/ARMCI)
    endif()
  endif()

endif()