⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 180680 in webkit


Ignore:
Timestamp:
Feb 26, 2015, 10:19:41 AM (12 years ago)
Author:
Brent Fulgham
Message:

[Win] Unreviewed build fix after r180676.

I forgot to checkin one of the more important changes!

  • win/tools/vsprops/common.props:
Location:
trunk/WebKitLibraries
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitLibraries/ChangeLog

    r180676 r180680  
     12015-02-26  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [Win] Unreviewed build fix after r180676.
     4
     5        I forgot to checkin one of the more important changes!
     6
     7        * win/tools/vsprops/common.props:
     8
    192015-02-26  Brent Fulgham  <bfulgham@apple.com>
    210
  • trunk/WebKitLibraries/win/tools/vsprops/common.props

    r180676 r180680  
    7575    </Midl>
    7676    <PostBuildEvent>
    77       <Command>REM Do not edit from the Visual Studio IDE! Customize via a $(ProjectName)PostBuild.cmd file.
    78 if not exist "$(ProjectDir)$(ProjectName)PostBuild.cmd" exit /b
    79 
    80 set CONFIGURATIONBUILDDIR=$(ConfigurationBuildDir)
    81 set CONFIGURATIONNAME=$(ConfigurationName)
    82 set INPUTDIR=$(InputDir)
    83 set INPUTFILENAME=$(InputFileName)
    84 set INPUTPATH=$(InputPath)
    85 set INTDIR=$(IntDir)
    86 set OUTDIR=$(OutDir)
    87 set PLATFORMARCHITECTURE=$(PlatformArchitecture)
    88 set PLATFORMNAME=$(PlatformName)
    89 set PROJECTDIR=$(ProjectDir)
    90 set PROJECTFILENAME=$(ProjectFileName)
    91 set PROJECTNAME=$(ProjectName)
    92 set PROJECTPATH=$(ProjectPath)
    93 set SOLUTIONDIR=$(SolutionDir)
    94 set SOLUTIONFILENAME=$(SolutionFileName)
    95 set SOLUTIONNAME=$(SolutionName)
    96 set SOLUTIONPATH=$(SolutionPath)
    97 set TARGETDIR=$(TargetDir)
    98 set TARGETEXT=$(TargetExt)
    99 set TARGETFILENAME=$(TargetFileName)
    100 set TARGETPATH=$(TargetPath)
    101 set DEBUGSUFFIX=$(DebugSuffix)
    102 set WEBKIT_LIBRARIES=$(WEBKIT_LIBRARIES)
    103 
    104 REM If any of the above variables didn't exist previously and
    105 REM were set to an empty string, set will set the errorlevel to 1,
    106 REM which will cause the project-specific script to think the build
    107 REM has failed. This cmd /c call will clear the errorlevel.
    108 cmd /c
    109 
    110 "$(ProjectDir)$(ProjectName)PostBuild.cmd"
     77      <Command>@REM Do not edit from the Visual Studio IDE! Customize via a $(ProjectName)PostBuild.cmd file.
     78@if not exist "$(ProjectDir)$(ProjectName)PostBuild.cmd" exit /b
     79
     80@set CONFIGURATIONBUILDDIR=$(ConfigurationBuildDir)
     81@set CONFIGURATIONNAME=$(ConfigurationName)
     82@set INPUTDIR=$(InputDir)
     83@set INPUTFILENAME=$(InputFileName)
     84@set INPUTPATH=$(InputPath)
     85@set INTDIR=$(IntDir)
     86@set OUTDIR=$(OutDir)
     87@set PLATFORMARCHITECTURE=$(PlatformArchitecture)
     88@set PLATFORMNAME=$(PlatformName)
     89@set PROJECTDIR=$(ProjectDir)
     90@set PROJECTFILENAME=$(ProjectFileName)
     91@set PROJECTNAME=$(ProjectName)
     92@set PROJECTPATH=$(ProjectPath)
     93@set SOLUTIONDIR=$(SolutionDir)
     94@set SOLUTIONFILENAME=$(SolutionFileName)
     95@set SOLUTIONNAME=$(SolutionName)
     96@set SOLUTIONPATH=$(SolutionPath)
     97@set TARGETDIR=$(TargetDir)
     98@set TARGETEXT=$(TargetExt)
     99@set TARGETFILENAME=$(TargetFileName)
     100@set TARGETPATH=$(TargetPath)
     101@set DEBUGSUFFIX=$(DebugSuffix)
     102@set WEBKIT_LIBRARIES=$(WEBKIT_LIBRARIES)
     103
     104@REM If any of the above variables didn't exist previously and
     105@REM were set to an empty string, set will set the errorlevel to 1,
     106@REM which will cause the project-specific script to think the build
     107@REM has failed. This cmd /c call will clear the errorlevel.
     108@cmd /c
     109
     110@"$(ProjectDir)$(ProjectName)PostBuild.cmd"
    111111</Command>
    112112    </PostBuildEvent>
    113113    <PreBuildEvent>
    114       <Command>REM Do not edit from the Visual Studio IDE! Customize via a $(ProjectName)PreBuild.cmd file.
    115 if not exist "$(ProjectDir)$(ProjectName)PreBuild.cmd" exit /b
    116 
    117 set CONFIGURATIONBUILDDIR=$(ConfigurationBuildDir)
    118 set CONFIGURATIONNAME=$(ConfigurationName)
    119 set INPUTDIR=$(InputDir)
    120 set INPUTFILENAME=$(InputFileName)
    121 set INPUTPATH=$(InputPath)
    122 set INTDIR=$(IntDir)
    123 set OUTDIR=$(OutDir)
    124 set PLATFORMARCHITECTURE=$(PlatformArchitecture)
    125 set PLATFORMNAME=$(PlatformName)
    126 set PROJECTDIR=$(ProjectDir)
    127 set PROJECTFILENAME=$(ProjectFileName)
    128 set PROJECTNAME=$(ProjectName)
    129 set PROJECTPATH=$(ProjectPath)
    130 set SOLUTIONDIR=$(SolutionDir)
    131 set SOLUTIONFILENAME=$(SolutionFileName)
    132 set SOLUTIONNAME=$(SolutionName)
    133 set SOLUTIONPATH=$(SolutionPath)
    134 set TARGETDIR=$(TargetDir)
    135 set TARGETEXT=$(TargetExt)
    136 set TARGETFILENAME=$(TargetFileName)
    137 set TARGETPATH=$(TargetPath)
    138 set DEBUGSUFFIX=$(DebugSuffix)
    139 set WEBKIT_LIBRARIES=$(WEBKIT_LIBRARIES)
    140 
    141 REM If any of the above variables didn't exist previously and
    142 REM were set to an empty string, set will set the errorlevel to 1,
    143 REM which will cause the project-specific script to think the build
    144 REM has failed. This cmd /c call will clear the errorlevel.
    145 cmd /c
    146 
    147 "$(ProjectDir)$(ProjectName)PreBuild.cmd"
     114      <Command>@REM Do not edit from the Visual Studio IDE! Customize via a $(ProjectName)PreBuild.cmd file.
     115@if not exist "$(ProjectDir)$(ProjectName)PreBuild.cmd" exit /b
     116
     117@set CONFIGURATIONBUILDDIR=$(ConfigurationBuildDir)
     118@set CONFIGURATIONNAME=$(ConfigurationName)
     119@set INPUTDIR=$(InputDir)
     120@set INPUTFILENAME=$(InputFileName)
     121@set INPUTPATH=$(InputPath)
     122@set INTDIR=$(IntDir)
     123@set OUTDIR=$(OutDir)
     124@set PLATFORMARCHITECTURE=$(PlatformArchitecture)
     125@set PLATFORMNAME=$(PlatformName)
     126@set PROJECTDIR=$(ProjectDir)
     127@set PROJECTFILENAME=$(ProjectFileName)
     128@set PROJECTNAME=$(ProjectName)
     129@set PROJECTPATH=$(ProjectPath)
     130@set SOLUTIONDIR=$(SolutionDir)
     131@set SOLUTIONFILENAME=$(SolutionFileName)
     132@set SOLUTIONNAME=$(SolutionName)
     133@set SOLUTIONPATH=$(SolutionPath)
     134@set TARGETDIR=$(TargetDir)
     135@set TARGETEXT=$(TargetExt)
     136@set TARGETFILENAME=$(TargetFileName)
     137@set TARGETPATH=$(TargetPath)
     138@set DEBUGSUFFIX=$(DebugSuffix)
     139@set WEBKIT_LIBRARIES=$(WEBKIT_LIBRARIES)
     140
     141@REM If any of the above variables didn't exist previously and
     142@REM were set to an empty string, set will set the errorlevel to 1,
     143@REM which will cause the project-specific script to think the build
     144@REM has failed. This cmd /c call will clear the errorlevel.
     145@cmd /c
     146
     147@"$(ProjectDir)$(ProjectName)PreBuild.cmd"
    148148</Command>
    149149    </PreBuildEvent>
    150150    <PreLinkEvent>
    151       <Command>REM Do not edit from the Visual Studio IDE! Customize via a $(ProjectName)PreLink.cmd file.
    152 if not exist "$(ProjectDir)$(ProjectName)PreLink.cmd" exit /b
    153 
    154 set CONFIGURATIONBUILDDIR=$(ConfigurationBuildDir)
    155 set CONFIGURATIONNAME=$(ConfigurationName)
    156 set INPUTDIR=$(InputDir)
    157 set INPUTFILENAME=$(InputFileName)
    158 set INPUTPATH=$(InputPath)
    159 set INTDIR=$(IntDir)
    160 set OUTDIR=$(OutDir)
    161 set PLATFORMARCHITECTURE=$(PlatformArchitecture)
    162 set PLATFORMNAME=$(PlatformName)
    163 set PROJECTDIR=$(ProjectDir)
    164 set PROJECTFILENAME=$(ProjectFileName)
    165 set PROJECTNAME=$(ProjectName)
    166 set PROJECTPATH=$(ProjectPath)
    167 set SOLUTIONDIR=$(SolutionDir)
    168 set SOLUTIONFILENAME=$(SolutionFileName)
    169 set SOLUTIONNAME=$(SolutionName)
    170 set SOLUTIONPATH=$(SolutionPath)
    171 set TARGETDIR=$(TargetDir)
    172 set TARGETEXT=$(TargetExt)
    173 set TARGETFILENAME=$(TargetFileName)
    174 set TARGETPATH=$(TargetPath)
    175 set DEBUGSUFFIX=$(DebugSuffix)
    176 set WEBKIT_LIBRARIES=$(WEBKIT_LIBRARIES)
    177 
    178 REM If any of the above variables didn't exist previously and
    179 REM were set to an empty string, set will set the errorlevel to 1,
    180 REM which will cause the project-specific script to think the build
    181 REM has failed. This cmd /c call will clear the errorlevel.
    182 cmd /c
    183 
    184 "$(ProjectDir)$(ProjectName)PreLink.cmd"
     151      <Command>@REM Do not edit from the Visual Studio IDE! Customize via a $(ProjectName)PreLink.cmd file.
     152@if not exist "$(ProjectDir)$(ProjectName)PreLink.cmd" exit /b
     153
     154@set CONFIGURATIONBUILDDIR=$(ConfigurationBuildDir)
     155@set CONFIGURATIONNAME=$(ConfigurationName)
     156@set INPUTDIR=$(InputDir)
     157@set INPUTFILENAME=$(InputFileName)
     158@set INPUTPATH=$(InputPath)
     159@set INTDIR=$(IntDir)
     160@set OUTDIR=$(OutDir)
     161@set PLATFORMARCHITECTURE=$(PlatformArchitecture)
     162@set PLATFORMNAME=$(PlatformName)
     163@set PROJECTDIR=$(ProjectDir)
     164@set PROJECTFILENAME=$(ProjectFileName)
     165@set PROJECTNAME=$(ProjectName)
     166@set PROJECTPATH=$(ProjectPath)
     167@set SOLUTIONDIR=$(SolutionDir)
     168@set SOLUTIONFILENAME=$(SolutionFileName)
     169@set SOLUTIONNAME=$(SolutionName)
     170@set SOLUTIONPATH=$(SolutionPath)
     171@set TARGETDIR=$(TargetDir)
     172@set TARGETEXT=$(TargetExt)
     173@set TARGETFILENAME=$(TargetFileName)
     174@set TARGETPATH=$(TargetPath)
     175@set DEBUGSUFFIX=$(DebugSuffix)
     176@set WEBKIT_LIBRARIES=$(WEBKIT_LIBRARIES)
     177
     178@REM If any of the above variables didn't exist previously and
     179@REM were set to an empty string, set will set the errorlevel to 1,
     180@REM which will cause the project-specific script to think the build
     181@REM has failed. This cmd /c call will clear the errorlevel.
     182@cmd /c
     183
     184@"$(ProjectDir)$(ProjectName)PreLink.cmd"
    185185</Command>
    186186    </PreLinkEvent>
Note: See TracChangeset for help on using the changeset viewer.