Changeset 180680 in webkit
- Timestamp:
- Feb 26, 2015, 10:19:41 AM (12 years ago)
- Location:
- trunk/WebKitLibraries
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
win/tools/vsprops/common.props (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebKitLibraries/ChangeLog
r180676 r180680 1 2015-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 1 9 2015-02-26 Brent Fulgham <bfulgham@apple.com> 2 10 -
trunk/WebKitLibraries/win/tools/vsprops/common.props
r180676 r180680 75 75 </Midl> 76 76 <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 /b79 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 and105 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 build107 REM has failed. This cmd /c call will clear the errorlevel.108 cmd /c109 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" 111 111 </Command> 112 112 </PostBuildEvent> 113 113 <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 /b116 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 and142 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 build144 REM has failed. This cmd /c call will clear the errorlevel.145 cmd /c146 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" 148 148 </Command> 149 149 </PreBuildEvent> 150 150 <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 /b153 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 and179 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 build181 REM has failed. This cmd /c call will clear the errorlevel.182 cmd /c183 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" 185 185 </Command> 186 186 </PreLinkEvent>
Note:
See TracChangeset
for help on using the changeset viewer.