Changeset 180264 in webkit
- Timestamp:
- Feb 18, 2015, 5:31:15 AM (10 years ago)
- Location:
- trunk/Source/bmalloc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/bmalloc/CMakeLists.txt
r179923 r180264 18 18 WEBKIT_WRAP_SOURCELIST(${bmalloc_SOURCES}) 19 19 include_directories(${bmalloc_INCLUDE_DIRECTORIES}) 20 add_library(bmalloc ${bmalloc_SOURCES})20 add_library(bmalloc STATIC ${bmalloc_SOURCES}) 21 21 target_link_libraries(bmalloc ${bmalloc_LIBRARIES}) 22 22 set_target_properties(bmalloc PROPERTIES COMPILE_DEFINITIONS "BUILDING_bmalloc") -
trunk/Source/bmalloc/ChangeLog
r180037 r180264 1 2015-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 1 11 2015-02-13 Gyuyoung Kim <gyuyoung.kim@samsung.com> 2 12
Note:
See TracChangeset
for help on using the changeset viewer.