mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 17:12:58 +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.
16 lines
484 B
CMake
16 lines
484 B
CMake
|
|
# FIXME: CORE-5743
|
|
|
|
function(set_wine_module TARGET)
|
|
include_directories(BEFORE
|
|
${REACTOS_SOURCE_DIR}/sdk/include/wine
|
|
${REACTOS_BINARY_DIR}/sdk/include/wine)
|
|
endfunction()
|
|
|
|
# FIXME: Replace this call with set_wine_module
|
|
function(set_wine_module_FIXME TARGET)
|
|
include_directories(BEFORE
|
|
${REACTOS_SOURCE_DIR}/sdk/include/wine
|
|
${REACTOS_BINARY_DIR}/sdk/include/wine)
|
|
target_compile_definitions(${TARGET} PRIVATE __WINESRC__)
|
|
endfunction()
|