mirror of
https://github.com/reactos/reactos.git
synced 2025-05-04 18:31:40 +00:00
23 lines
545 B
CMake
23 lines
545 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
|
|
list(APPEND SOURCE
|
|
config.c
|
|
debug_ros.c
|
|
isinf.c
|
|
isfinite.c
|
|
isnan.c
|
|
loader.c
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/crt/string/wctype.c
|
|
path.c
|
|
register.c
|
|
# string.c implements _stricmp, already shipped with crt
|
|
)
|
|
|
|
add_library(wine ${SOURCE})
|
|
add_dependencies(wine psdk)
|
|
target_compile_definitions(wine PRIVATE __WINESRC__ _WINE)
|
|
|
|
add_library(wineldr loader.c)
|
|
add_dependencies(wineldr xdk)
|
|
target_compile_definitions(wineldr PRIVATE __WINESRC__)
|