blob: c69a92f94819df38e0f386819e4ae359f795551f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0" encoding="utf-8"?>
<VisualStudioToolFile
Name="Fortran to C conversion"
Version="8,00"
>
<Rules>
<CustomBuildRule
Name="f2c rule"
DisplayName="f2c rule"
CommandLine="cd "$(InputDir)"
"$(SolutionDir)bin\f2c.exe" -E -I..\..\..\core\includes -I..\..\..\..\core\includes "$(InputFileName)" 2>NUL

"
Outputs=""$(InputDir)$(InputName).c""
FileExtensions="*.f"
ExecutionDescription="Converting $(InputName).f to $(InputName).c ..."
ShowOnlyRuleProperties="false"
>
<Properties>
</Properties>
</CustomBuildRule>
</Rules>
</VisualStudioToolFile>
|