mirror of
https://github.com/reactos/reactos.git
synced 2025-01-09 15:51:16 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
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)
|