mirror of
https://github.com/reactos/reactos.git
synced 2025-04-30 02:58:48 +00:00
17 lines
516 B
CMake
17 lines
516 B
CMake
![]() |
|
||
|
# FIXME: CORE-5743
|
||
|
|
||
|
function(set_wine_module TARGET)
|
||
|
include_directories(BEFORE
|
||
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine
|
||
|
${REACTOS_BINARY_DIR}/sdk/include/reactos/wine)
|
||
|
endfunction()
|
||
|
|
||
|
# FIXME: Replace this call with set_wine_module
|
||
|
function(set_wine_module_FIXME TARGET)
|
||
|
include_directories(BEFORE
|
||
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine
|
||
|
${REACTOS_BINARY_DIR}/sdk/include/reactos/wine)
|
||
|
target_compile_definitions(${TARGET} PRIVATE __WINESRC__)
|
||
|
endfunction()
|