Ignore:
Timestamp:
Aug 12, 2015, 12:00:48 PM (10 years ago)
Author:
[email protected]
Message:

Fix Debug CMake builds on Windows
https://bugs.webkit.org/show_bug.cgi?id=147940

Reviewed by Chris Dumez.

.:

  • Source/cmake/OptionsWindows.cmake:

Put 32-bit binaries in a bin32 subdirectory and 64-bit binaries in a bin64 subdirectory.

Source/JavaScriptCore:

  • PlatformWin.cmake:

Copy the plist to the JavaScriptCore.resources directory.

Source/WebCore:

  • PlatformWin.cmake:

Copy localized strings to the WebKit.resources directory.

Source/WebKit:

  • PlatformWin.cmake:

We need /NODEFAULTLIB with the debug version of libraries, too.

Tools:

  • DumpRenderTree/PlatformWin.cmake:
  • TestWebKitAPI/PlatformWin.cmake:

The BitmapImage test is not enabled on the AppleWin port.

  • WinLauncher/CMakeLists.txt:

Debug builds need /NODEFAULTLIB:MSVCRTD, too.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/PlatformWin.cmake

    r172754 r188342  
    2828    inspector/JSGlobalObjectInspectorController.cpp
    2929)
     30
     31file(COPY
     32    "${JAVASCRIPTCORE_DIR}/JavaScriptCore.vcxproj/JavaScriptCore.resources"
     33    DESTINATION
     34    ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
     35)
Note: See TracChangeset for help on using the changeset viewer.