Changeset 180264 in webkit


Ignore:
Timestamp:
Feb 18, 2015 5:31:15 AM (9 years ago)
Author:
zandobersek@gmail.com
Message:

Build bmalloc through CMake as a static library. It's then linked either
into the WTF library (if built as a shared library) or into the JSC and
WebKit2 libraries. There's no need to build it as a standalone shared library.

Rubber-stamped by Carlos Garcia Campos.

  • CMakeLists.txt:
Location:
trunk/Source/bmalloc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/bmalloc/CMakeLists.txt

    r179923 r180264  
    1818WEBKIT_WRAP_SOURCELIST(${bmalloc_SOURCES})
    1919include_directories(${bmalloc_INCLUDE_DIRECTORIES})
    20 add_library(bmalloc ${bmalloc_SOURCES})
     20add_library(bmalloc STATIC ${bmalloc_SOURCES})
    2121target_link_libraries(bmalloc ${bmalloc_LIBRARIES})
    2222set_target_properties(bmalloc PROPERTIES COMPILE_DEFINITIONS "BUILDING_bmalloc")
  • trunk/Source/bmalloc/ChangeLog

    r180037 r180264  
     12015-02-18  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Build bmalloc through CMake as a static library. It's then linked either
     4        into the WTF library (if built as a shared library) or into the JSC and
     5        WebKit2 libraries. There's no need to build it as a standalone shared library.
     6
     7        Rubber-stamped by Carlos Garcia Campos.
     8
     9        * CMakeLists.txt:
     10
    1112015-02-13  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    212
Note: See TracChangeset for help on using the changeset viewer.