mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 06:15:52 +00:00
[CRT] Refactor CMake files
This commit is contained in:
parent
3e1454c739
commit
8c4aff39a8
22 changed files with 936 additions and 886 deletions
26
sdk/lib/crt/wine/wine.cmake
Normal file
26
sdk/lib/crt/wine/wine.cmake
Normal file
|
@ -0,0 +1,26 @@
|
|||
|
||||
list(APPEND CRT_WINE_SOURCE
|
||||
wine/cpp.c
|
||||
wine/except.c
|
||||
wine/heap.c
|
||||
wine/undname.c
|
||||
)
|
||||
|
||||
if(ARCH STREQUAL "i386")
|
||||
list(APPEND CRT_WINE_SOURCE
|
||||
wine/except_i386.c
|
||||
)
|
||||
elseif(ARCH STREQUAL "amd64")
|
||||
list(APPEND CRT_WINE_SOURCE
|
||||
wine/except_x86_64.c
|
||||
)
|
||||
elseif(ARCH STREQUAL "arm")
|
||||
list(APPEND CRT_WINE_SOURCE
|
||||
wine/except_arm.c
|
||||
)
|
||||
endif()
|
||||
|
||||
# includes for wine code
|
||||
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
||||
|
||||
#set_source_files_properties(${CRT_WINE_SOURCE} PROPERTIES INCLUDE_DIRECTORIES)
|
Loading…
Add table
Add a link
Reference in a new issue