diff options
author | Brad King <brad.king@kitware.com> | 2013-10-11 17:40:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-10-18 13:55:59 (GMT) |
commit | af40e8c31256095eb8436b798fa1fbc0c71b0319 (patch) | |
tree | b3f8ca7e9003a4c6cd731ab26444d97d86f4111e /Modules/CompilerId/VS-Intel.vfproj.in | |
parent | b8522a8c8a64d6f86dc3618f658b07f7ba1d8fcd (diff) | |
download | CMake-af40e8c31256095eb8436b798fa1fbc0c71b0319.zip CMake-af40e8c31256095eb8436b798fa1fbc0c71b0319.tar.gz CMake-af40e8c31256095eb8436b798fa1fbc0c71b0319.tar.bz2 |
VS: Detect Intel Fortran compiler id and version
Teach CMakeDetermineCompilerId to use a .vfproj project file to
build the Fortran compiler id source file under the Visual Studio
generators.
Diffstat (limited to 'Modules/CompilerId/VS-Intel.vfproj.in')
-rw-r--r-- | Modules/CompilerId/VS-Intel.vfproj.in | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Modules/CompilerId/VS-Intel.vfproj.in b/Modules/CompilerId/VS-Intel.vfproj.in new file mode 100644 index 0000000..044dd20 --- /dev/null +++ b/Modules/CompilerId/VS-Intel.vfproj.in @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> +<VisualStudioProject + ProjectCreator="Intel Fortran" + Keyword="Console Application" + Version="@CMAKE_VS_INTEL_Fortran_PROJECT_VERSION@" + ProjectIdGuid="{AB67BAB7-D7AE-4E97-B492-FE5420447509}" + > + <Platforms> + <Platform Name="@id_platform@"/> + </Platforms> + <Configurations> + <Configuration + Name="Debug|@id_platform@" + OutputDirectory="." + IntermediateDirectory="$(ConfigurationName)" + > + <Tool + Name="VFFortranCompilerTool" + DebugInformationFormat="debugEnabled" + Optimization="optimizeDisabled" + Preprocess="preprocessYes" + RuntimeLibrary="rtMultiThreadedDebugDLL" + /> + <Tool + Name="VFLinkerTool" + LinkIncremental="linkIncrementalNo" + GenerateDebugInformation="true" + SubSystem="subSystemConsole" + /> + <Tool + Name="VFPostBuildEventTool" + CommandLine="for %%i in (@id_cl@) do @echo CMAKE_@id_lang@_COMPILER=%%~$PATH:i" + /> + </Configuration> + </Configurations> + <Files> + <Filter Name="Source Files" Filter="F"> + <File RelativePath="@id_src@"/> + </Filter> + </Files> + <Globals/> +</VisualStudioProject> |