2019-03-20 14:13:41 +02:00
|
|
|
cmake_minimum_required(VERSION 3.0.2)
|
2019-03-20 11:28:47 +02:00
|
|
|
include(CMakeAddFortranSubdirectory)
|
2019-03-19 16:33:44 +02:00
|
|
|
project (QPMS)
|
|
|
|
|
|
|
|
macro(use_c99)
|
|
|
|
if (CMAKE_VERSION VERSION_LESS "3.1")
|
|
|
|
if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
|
|
|
|
set (CMAKE_C_FLAGS "-std=gnu99 ${CMAKE_C_FLAGS}")
|
|
|
|
endif ()
|
|
|
|
else ()
|
|
|
|
set (CMAKE_C_STANDARD 99)
|
|
|
|
endif ()
|
|
|
|
endmacro(use_c99)
|
|
|
|
|
2019-03-20 20:46:47 +02:00
|
|
|
# We need the amos libraries to be compiled with -fPIC
|
|
|
|
# but at the same time, we do not want to make a .so file,
|
|
|
|
# so distutils package it with the rest of qpms c/cython lib.
|
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
|
|
|
2019-03-19 16:33:44 +02:00
|
|
|
set (QPMS_VERSION_MAJOR 0)
|
|
|
|
#set (QPMS_VERSION_MINOR 3)
|
2019-03-20 11:28:47 +02:00
|
|
|
cmake_add_fortran_subdirectory (amos
|
|
|
|
PROJECT amos
|
|
|
|
LIBRARIES amos
|
|
|
|
NO_EXTERNAL_INSTALL)
|
2019-03-19 16:33:44 +02:00
|
|
|
add_subdirectory (qpms)
|
|
|
|
|