mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 08:52:57 +00:00

- Move sdk\include\reactos\wine to sdk\include\wine - Reorder the directories in include_directories() to be closer to alphabetical. This should make it easier to determine what global include directories can be removed in the future.
28 lines
923 B
CMake
28 lines
923 B
CMake
|
|
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)
|
|
target_include_directories(wine BEFORE PRIVATE ${REACTOS_SOURCE_DIR}/sdk/include/wine)
|
|
|
|
add_library(wineldr loader.c)
|
|
add_dependencies(wineldr xdk)
|
|
target_compile_definitions(wineldr PRIVATE __WINESRC__)
|
|
target_include_directories(wineldr BEFORE PRIVATE ${REACTOS_SOURCE_DIR}/sdk/include/wine)
|
|
|
|
add_library(wine_dll_register dll_register.c ${SOURCE})
|
|
add_dependencies(wine_dll_register psdk)
|
|
target_compile_definitions(wine_dll_register PRIVATE __WINESRC__ _WINE)
|
|
target_include_directories(wine_dll_register BEFORE PRIVATE ${REACTOS_SOURCE_DIR}/sdk/include/wine)
|