reactos/sdk/lib/crt/wine/wine.cmake
Serge Gautherie 724774505e [CRT/arm64] Build wine/except_arm64.c
Follow-up to 9efafd6 (0.4.14-dev-934).
CORE-17518
2022-01-11 20:52:34 +03:00

31 lines
658 B
CMake

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
)
elseif(ARCH STREQUAL "arm64")
list(APPEND CRT_WINE_SOURCE
wine/except_arm64.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)