2011-05-16 13:12:07 +00:00
|
|
|
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
config.c
|
|
|
|
debug_ros.c
|
2012-05-01 17:20:47 +00:00
|
|
|
isinf.c
|
2014-01-26 21:55:59 +00:00
|
|
|
isfinite.c
|
2012-05-01 17:20:47 +00:00
|
|
|
isnan.c
|
2011-05-16 13:12:07 +00:00
|
|
|
loader.c
|
2016-04-20 12:36:25 +00:00
|
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/crt/string/wctype.c
|
2020-09-14 08:01:15 +00:00
|
|
|
path.c
|
2011-12-03 11:03:45 +00:00
|
|
|
register.c
|
2011-07-24 10:41:32 +00:00
|
|
|
# string.c implements _stricmp, already shipped with crt
|
|
|
|
)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
add_library(wine ${SOURCE})
|
2011-12-03 11:36:30 +00:00
|
|
|
add_dependencies(wine psdk)
|
2020-09-14 08:01:15 +00:00
|
|
|
target_compile_definitions(wine PRIVATE __WINESRC__ _WINE)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
add_library(wineldr loader.c)
|
2015-09-07 11:13:09 +00:00
|
|
|
add_dependencies(wineldr xdk)
|
2020-09-14 08:01:15 +00:00
|
|
|
target_compile_definitions(wineldr PRIVATE __WINESRC__)
|
2022-03-13 21:12:17 +00:00
|
|
|
|
|
|
|
add_library(wine_dll_register dll_register.c ${SOURCE})
|
|
|
|
add_dependencies(wine_dll_register psdk)
|
|
|
|
target_compile_definitions(wine_dll_register PRIVATE __WINESRC__ _WINE)
|