mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
22 lines
620 B
CMake
22 lines
620 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
spec2def(fltlib.dll fltlib.spec ADD_IMPORTLIB)
|
|
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers/fltmgr
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine
|
|
includes)
|
|
|
|
list(APPEND SOURCE
|
|
fltlib.c
|
|
message.c
|
|
stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/fltlib.def)
|
|
|
|
add_library(fltlib SHARED ${SOURCE} rsrc.rc)
|
|
set_module_type(fltlib win32dll)
|
|
target_link_libraries(fltlib wine)
|
|
add_target_compile_definitions(fltlib NTDDI_VERSION=NTDDI_WS03SP1)
|
|
add_importlibs(fltlib msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET fltlib DESTINATION reactos/system32 FOR all)
|