[Cmake-commits] CMake branch, master, updated. v3.7.1-921-gc8084b3

2017-01-01 Thread Kitware Robot
_VERSION_MINOR 7) -set(CMake_VERSION_PATCH 20170101) +set(CMake_VERSION_PATCH 20170102) #set(CMake_VERSION_RC 1) --- Summary of changes: Source/CMakeVersion.cmake |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/

[CMake] CMake project with fpp preprocessed Fortran source file failed

2017-01-01 Thread turbulent
Hi, I'm trying to use fpp preprocessor in a Fortran project built with CMake. For example, I have two source files. The file x.f90 defines module x: module x #ifdef ENABLE_Z use z #endif implicit none end module x The module z used in module x is defined in z.f90 as followed: module z