Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Move WebKit2WebProcess's settings to a vsprops file
Fixes <http://webkit.org/b/42751> WebKit2WebProcess should use vsprops files Reviewed by Darin Adler. * win/WebKit2WebProcess.vcproj: Moved settings from here... * win/WebKit2WebProcessCommon.vsprops: ...to here. Canonical link: https://commits.webkit.org/54667@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@63830 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
55 additions
and 25 deletions.
- +12 −0 WebKit2/ChangeLog
- +20 −25 WebKit2/win/WebKit2WebProcess.vcproj
- +23 −0 WebKit2/win/WebKit2WebProcessCommon.vsprops
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="Windows-1252"?> | ||
<VisualStudioPropertySheet | ||
ProjectType="Visual C++" | ||
Version="8.00" | ||
Name="WebKit2WebProcessCommon" | ||
> | ||
<Tool | ||
Name="VCCLCompilerTool" | ||
AdditionalIncludeDirectories=""$(ProjectDir)\..\WebProcess\win"" | ||
/> | ||
<Tool | ||
Name="VCLinkerTool" | ||
AdditionalDependencies="WebKit$(WebKitDLLConfigSuffix).lib" | ||
/> | ||
<Tool | ||
Name="VCPostBuildEventTool" | ||
CommandLine="if exist "$(WebKitOutputDir)\buildfailed" del "$(WebKitOutputDir)\buildfailed"
" | ||
/> | ||
<Tool | ||
Name="VCPreBuildEventTool" | ||
CommandLine="%SystemDrive%\cygwin\bin\which.exe bash
if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
cmd /c
if exist "$(WebKitOutputDir)\buildfailed" grep XX$(ProjectName)XX "$(WebKitOutputDir)\buildfailed"
if errorlevel 1 exit 1
echo XX$(ProjectName)XX > "$(WebKitOutputDir)\buildfailed"

bash "$(WebKitLibrariesDir)\tools\scripts\auto-version.sh" "$(IntDir)"
" | ||
/> | ||
</VisualStudioPropertySheet> |