mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 05:43:08 +00:00
[CRT] Refactor CMake files
This commit is contained in:
parent
3e1454c739
commit
8c4aff39a8
22 changed files with 936 additions and 886 deletions
18
sdk/lib/crt/setjmp/setjmp.cmake
Normal file
18
sdk/lib/crt/setjmp/setjmp.cmake
Normal file
|
@ -0,0 +1,18 @@
|
|||
|
||||
if(ARCH STREQUAL "i386")
|
||||
list(APPEND LIBCNTPR_SETJMP_ASM_SOURCE
|
||||
setjmp/i386/setjmp.s
|
||||
)
|
||||
elseif(ARCH STREQUAL "amd64")
|
||||
list(APPEND LIBCNTPR_SETJMP_ASM_SOURCE
|
||||
setjmp/amd64/setjmp.s
|
||||
)
|
||||
elseif(ARCH STREQUAL "arm")
|
||||
list(APPEND LIBCNTPR_SETJMP_ASM_SOURCE
|
||||
setjmp/arm/setjmp.s
|
||||
)
|
||||
endif()
|
||||
|
||||
list(APPEND CRT_SETJMP_ASM_SOURCE
|
||||
${LIBCNTPR_SETJMP_ASM_SOURCE}
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue