mirror of
https://github.com/reactos/reactos.git
synced 2025-07-02 04:01:28 +00:00
31 lines
666 B
CMake
31 lines
666 B
CMake
|
|
list(APPEND UCRT_STDLIB_SOURCES
|
|
stdlib/abs.cpp
|
|
stdlib/bsearch.cpp
|
|
stdlib/bsearch_s.cpp
|
|
stdlib/byteswap.cpp
|
|
stdlib/div.cpp
|
|
stdlib/imaxabs.cpp
|
|
stdlib/imaxdiv.cpp
|
|
stdlib/labs.cpp
|
|
stdlib/ldiv.cpp
|
|
stdlib/lfind.cpp
|
|
stdlib/lfind_s.cpp
|
|
stdlib/llabs.cpp
|
|
stdlib/lldiv.cpp
|
|
stdlib/lsearch.cpp
|
|
stdlib/lsearch_s.cpp
|
|
stdlib/qsort.cpp
|
|
stdlib/qsort_s.cpp
|
|
stdlib/rand.cpp
|
|
stdlib/rand_s.cpp
|
|
stdlib/rotl.cpp
|
|
stdlib/rotr.cpp
|
|
)
|
|
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
|
add_asm_files(UCRT_STRING_ASM stdlib/clang-hacks.s)
|
|
list(APPEND UCRT_STDLIB_SOURCES
|
|
${UCRT_STRING_ASM}
|
|
)
|
|
endif()
|