Some little docstrings.
[qpms.git] / CMakeLists.txt
blob84410d3f43cf946d932268132f25e708debbc425
1 cmake_minimum_required(VERSION 3.0.2)
2 include(CMakeAddFortranSubdirectory)
3 include(version.cmake)
4 include(GNUInstallDirs)
6 project (QPMS)
8 macro(use_c99)
9   if (CMAKE_VERSION VERSION_LESS "3.1")
10     if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
11       set (CMAKE_C_FLAGS "-std=gnu99 ${CMAKE_C_FLAGS}")
12     endif ()
13   else ()
14     set (CMAKE_C_STANDARD 99)
15   endif ()
16 endmacro(use_c99)
18 # We need the amos libraries to be compiled with -fPIC
19 # but at the same time, we do not want to make a .so file,
20 # so distutils package it with the rest of qpms c/cython lib.
21 set(CMAKE_POSITION_INDEPENDENT_CODE ON)
23 set (QPMS_VERSION_MAJOR 0)
24 #set (QPMS_VERSION_MINOR 3)
25 cmake_add_fortran_subdirectory (amos
26         PROJECT amos
27         LIBRARIES amos
28         NO_EXTERNAL_INSTALL)
29 add_subdirectory (qpms)
32 enable_testing()
33 add_subdirectory (tests EXCLUDE_FROM_ALL)
35 #add_subdirectory (apps/transop-ewald)