mirror of
https://github.com/reactos/reactos.git
synced 2025-06-20 07:36:05 +00:00
19 lines
505 B
CMake
19 lines
505 B
CMake
|
|
list(APPEND UCRT_VCRUNTIME_SOURCES
|
|
vcruntime/__report_gsfailure.c
|
|
vcruntime/__report_rangecheckfailure.c
|
|
vcruntime/__security_init_cookie.c
|
|
vcruntime/__vcrt_init.c
|
|
vcruntime/initializers.cpp
|
|
vcruntime/isa_available.cpp
|
|
)
|
|
|
|
if(${ARCH} STREQUAL "i386")
|
|
list(APPEND UCRT_VCRUNTIME_SOURCES
|
|
vcruntime/i386/__security_check_cookie.s
|
|
)
|
|
elseif(${ARCH} STREQUAL "amd64")
|
|
list(APPEND UCRT_VCRUNTIME_SOURCES
|
|
vcruntime/amd64/__security_check_cookie.s
|
|
)
|
|
endif()
|