Re: [CMake] Incremental linking and Intel fortan

2012-09-05 Thread Alexander Ivanov
buildsystem (perhaps NMake) and see what the command line looks like there? Perhaps a flag turning incremental linking on comes from a different variable (there's a lot of cmake vars which make up the final command line). Petr On Mon, Sep 3, 2012 at 6:34 PM, Alexander Ivanov alexander.nik.iva

Re: [CMake] Incremental linking and Intel fortan

2012-09-03 Thread Alexander Ivanov
Hi Petr, Unfortunately it doesn't. I changed the sample as following but intel fortran ignores incremental linking setting. cmake_minimum_required(VERSION 2.8) project(TestF90 Fortran) set(CMAKE_EXE_LINKER_FLAGS /INCREMENTAL:NO CACHE STRING EXE_LINKER_FLAGS FORCE)

[CMake] Incremental linking and Intel fortan

2012-08-31 Thread Alexander Ivanov
Hello all! I am trying to adopt cmake for fortran based project. This is my first CMakeLists.txt for fortran. CMAKE_MINIMUM_REQUIRED(VERSION 2.8) SET(CMAKE_EXE_LINKER_FLAGS /INCREMENTAL:NO CACHE STRING EXE_LINKER_FLAGS FORCE) PROJECT(TestF90 Fortran) ADD_EXECUTABLE (TestF90_EXE main.f90)