Changeset 159941 in webkit


Ignore:
Timestamp:
Dec 2, 2013 10:47:01 AM (10 years ago)
Author:
Brent Fulgham
Message:

[Win] WebKit Project doesn't copy resource bundle
https://bugs.webkit.org/show_bug.cgi?id=125078

Reviewed by Jer Noble.

  • WebKit.vcxproj/WebKit/WebKitPostBuild.cmd: Correct post-build step

to copy WebKit.resources to build target.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r159852 r159941  
     12013-12-02  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [Win] WebKit Project doesn't copy resource bundle
     4        https://bugs.webkit.org/show_bug.cgi?id=125078
     5
     6        Reviewed by Jer Noble.
     7
     8        * WebKit.vcxproj/WebKit/WebKitPostBuild.cmd: Correct post-build step
     9        to copy WebKit.resources to build target.
     10
    1112013-11-28  Thiago de Barros Lacerda  <thiago.lacerda@openbossa.org>
    212
  • trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKitPostBuild.cmd

    r158885 r159941  
    11mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebKit"
     2
     3set ResourcesDirectory=%CONFIGURATIONBUILDDIR%\bin32\WebKit.resources
    24
    35xcopy /y /d "%PROJECTDIR%\..\..\win\WebLocalizableStrings.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
     
    1214xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\nptypes.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
    1315
     16echo Copying resources...
     17mkdir "%ResourcesDirectory%" 2>NUL
     18xcopy /y /d "%PROJECTDIR%\..\..\win\WebKit.resources\*" "%ResourcesDirectory%" >NUL
     19
    1420if exist "%WEBKIT_LIBRARIES%\tools\VersionStamper\VersionStamper.exe" "%WEBKIT_LIBRARIES%\tools\VersionStamper\VersionStamper.exe" --verbose "%TARGETPATH%"
    1521
Note: See TracChangeset for help on using the changeset viewer.