mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
19 lines
401 B
CMake
19 lines
401 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
list(APPEND SOURCE
|
|
config.c
|
|
debug_ros.c
|
|
isinf.c
|
|
isnan.c
|
|
loader.c
|
|
${REACTOS_SOURCE_DIR}/lib/sdk/crt/string/wctype.c
|
|
register.c
|
|
# string.c implements _stricmp, already shipped with crt
|
|
)
|
|
|
|
add_library(wine ${SOURCE})
|
|
add_dependencies(wine psdk)
|
|
|
|
add_library(wineldr loader.c)
|