Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[WinCairo] Get build working under VS2010.
https://bugs.webkit.org/show_bug.cgi?id=112604 Reviewed by Tim Horton. * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj: Add build targets for Debug_WinCairo and Release_WinCairo using CFLite. * JavaScriptCore.vcxproj/JavaScriptCoreCFLite.props: Added. * JavaScriptCore.vcxproj/JavaScriptCoreDebugCFLite.props: Added. * JavaScriptCore.vcxproj/JavaScriptCoreExportGenerator/JavaScriptCoreExportGenerator.vcxproj: Add Debug_WinCairo and Release_WinCairo build targets to make sure headers are copied to proper build folder. * JavaScriptCore.vcxproj/JavaScriptCoreGenerated.vcxproj: Ditto. * JavaScriptCore.vcxproj/JavaScriptCoreReleaseCFLite.props: Added. * JavaScriptCore.vcxproj/LLInt/LLIntAssembly/LLIntAssembly.vcxproj: Add Debug_WinCairo and Release_WinCairo build targets to make sure headers are copied to proper build folder. * JavaScriptCore.vcxproj/LLInt/LLIntDesiredOffsets/LLIntDesiredOffsets.vcxproj: Ditto. * JavaScriptCore.vcxproj/LLInt/LLIntOffsetsExtractor/LLIntOffsetsExtractor.vcxproj: Ditto. * JavaScriptCore.vcxproj/jsc/jsc.vcxproj: Ditto. * JavaScriptCore.vcxproj/testRegExp/testRegExp.vcxproj: Ditto. * JavaScriptCore.vcxproj/testapi/testapi.vcxproj: Ditto. Canonical link: https://commits.webkit.org/130928@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@146123 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Brent Fulgham
committed
Mar 18, 2013
1 parent
51ed33c
commit a727d41e4d7996e262eaf1d910222c58ef0da605
Showing
13 changed files
with
430 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ImportGroup Label="PropertySheets" /> | ||
<PropertyGroup Label="UserMacros" /> | ||
<PropertyGroup /> | ||
<ItemDefinitionGroup> | ||
<Link> | ||
<AdditionalDependencies>CFLite.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
</Link> | ||
</ItemDefinitionGroup> | ||
<ItemGroup /> | ||
</Project> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ImportGroup Label="PropertySheets"> | ||
<Import Project="$(WebKit_Source)\WebKit\WebKit.vcxproj\FeatureDefinesCairo.props" /> | ||
<Import Project="$(WebKit_Source)\WebKit\WebKit.vcxproj\common.props" /> | ||
<Import Project="$(WebKit_Source)\WebKit\WebKit.vcxproj\debug.props" /> | ||
<Import Project="JavaScriptCoreCommon.props" /> | ||
<Import Project="JavaScriptCoreCFLite.props" /> | ||
</ImportGroup> | ||
<PropertyGroup Label="UserMacros" /> | ||
<PropertyGroup /> | ||
<ItemDefinitionGroup> | ||
<ClCompile /> | ||
</ItemDefinitionGroup> | ||
<ItemGroup /> | ||
</Project> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ImportGroup Label="PropertySheets"> | ||
<Import Project="$(WebKit_Source)\WebKit\WebKit.vcxproj\FeatureDefinesCairo.props" /> | ||
<Import Project="$(WebKit_Source)\WebKit\WebKit.vcxproj\common.props" /> | ||
<Import Project="$(WebKit_Source)\WebKit\WebKit.vcxproj\release.props" /> | ||
<Import Project="JavaScriptCoreCommon.props" /> | ||
<Import Project="JavaScriptCoreCFLite.props" /> | ||
</ImportGroup> | ||
<PropertyGroup Label="UserMacros" /> | ||
<PropertyGroup /> | ||
<ItemDefinitionGroup> | ||
<Link /> | ||
</ItemDefinitionGroup> | ||
<ItemGroup /> | ||
</Project> |
Oops, something went wrong.