Changeset 141702 in webkit


Ignore:
Timestamp:
Feb 2, 2013 12:59:25 PM (11 years ago)
Author:
Patrick Gansterer
Message:

[CMake] Adopt the WinCE port to new CMake
https://bugs.webkit.org/show_bug.cgi?id=108754

Reviewed by Laszlo Gombos.

.:

Remove the entry point hack which isn't required in the new
CMake version with offical WindowsCE support.

  • Source/cmake/OptionsWindows.cmake:

Source/JavaScriptCore:

  • os-win32/WinMain.cpp: Removed.
  • shell/PlatformWinCE.cmake: Removed.

Tools:

  • WinCELauncher/CMakeLists.txt: Mark WinCELauncher

as WIN32 target to use the correct entry point.

Location:
trunk
Files:
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r141656 r141702  
     12013-02-02  Patrick Gansterer  <paroga@webkit.org>
     2
     3        [CMake] Adopt the WinCE port to new CMake
     4        https://bugs.webkit.org/show_bug.cgi?id=108754
     5
     6        Reviewed by Laszlo Gombos.
     7
     8        Remove the entry point hack which isn't required in the new
     9        CMake version with offical WindowsCE support.
     10
     11        * Source/cmake/OptionsWindows.cmake:
     12
    1132013-02-01  Benjamin Poulain  <bpoulain@apple.com>
    214
  • trunk/Source/JavaScriptCore/ChangeLog

    r141700 r141702  
     12013-02-02  Patrick Gansterer  <paroga@webkit.org>
     2
     3        [CMake] Adopt the WinCE port to new CMake
     4        https://bugs.webkit.org/show_bug.cgi?id=108754
     5
     6        Reviewed by Laszlo Gombos.
     7
     8        * os-win32/WinMain.cpp: Removed.
     9        * shell/PlatformWinCE.cmake: Removed.
     10
    1112013-02-02  Mark Rowe  <mrowe@apple.com>
    212
  • trunk/Source/cmake/OptionsWindows.cmake

    r140662 r141702  
    1616    endif ()
    1717endif ()
    18 
    19 string(REPLACE "/ENTRY:mainACRTStartup" "/ENTRY:WinMainCRTStartup" CMAKE_EXE_LINKER_FLAGS ${CMAKE_EXE_LINKER_FLAGS})
  • trunk/Tools/ChangeLog

    r141698 r141702  
     12013-02-02  Patrick Gansterer  <paroga@webkit.org>
     2
     3        [CMake] Adopt the WinCE port to new CMake
     4        https://bugs.webkit.org/show_bug.cgi?id=108754
     5
     6        Reviewed by Laszlo Gombos.
     7
     8        * WinCELauncher/CMakeLists.txt: Mark WinCELauncher
     9        as WIN32 target to use the correct entry point.
     10
    1112013-02-02  Alexey Proskuryakov  <ap@apple.com>
    212
  • trunk/Tools/WinCELauncher/CMakeLists.txt

    r136790 r141702  
    2121
    2222include_directories(${WinCELauncher_INCLUDE_DIRECTORIES})
    23 add_executable(WinCELauncher ${WinCELauncher_SOURCES})
     23add_executable(WinCELauncher WIN32 ${WinCELauncher_SOURCES})
    2424add_dependencies(WinCELauncher ${WebKit_LIBRARY_NAME})
    2525target_link_libraries(WinCELauncher ${WinCELauncher_LIBRARIES})
Note: See TracChangeset for help on using the changeset viewer.