mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:55:42 +00:00
[UCRT] Add CMake files
This commit is contained in:
parent
ef440b9aef
commit
7bb12665d6
21 changed files with 654 additions and 1 deletions
28
sdk/lib/ucrt/heap/heap.cmake
Normal file
28
sdk/lib/ucrt/heap/heap.cmake
Normal file
|
@ -0,0 +1,28 @@
|
|||
|
||||
list(APPEND UCRT_HEAP_SOURCES
|
||||
heap/align.cpp
|
||||
heap/calloc.cpp
|
||||
heap/calloc_base.cpp
|
||||
heap/expand.cpp
|
||||
heap/free.cpp
|
||||
heap/free_base.cpp
|
||||
heap/heapchk.cpp
|
||||
heap/heapmin.cpp
|
||||
heap/heapwalk.cpp
|
||||
heap/heap_handle.cpp
|
||||
heap/malloc.cpp
|
||||
heap/malloc_base.cpp
|
||||
heap/msize.cpp
|
||||
heap/new_handler.cpp
|
||||
heap/new_mode.cpp
|
||||
heap/realloc.cpp
|
||||
heap/realloc_base.cpp
|
||||
heap/recalloc.cpp
|
||||
)
|
||||
|
||||
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
||||
list(APPEND UCRT_HEAP_SOURCES
|
||||
heap/debug_heap.cpp
|
||||
heap/debug_heap_hook.cpp
|
||||
)
|
||||
endif()
|
Loading…
Add table
Add a link
Reference in a new issue