2014-09-22 19:24:12 +00:00
|
|
|
|
|
|
|
add_definitions(-D__WINESRC__)
|
2016-08-09 22:10:05 +00:00
|
|
|
spec2def(fltlib.dll fltlib.spec ADD_IMPORTLIB)
|
2014-09-22 19:24:12 +00:00
|
|
|
|
2016-09-06 15:52:38 +00:00
|
|
|
include_directories(
|
|
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers/fltmgr
|
|
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine
|
|
|
|
includes)
|
|
|
|
|
2014-09-22 19:24:12 +00:00
|
|
|
list(APPEND SOURCE
|
|
|
|
fltlib.c
|
2017-05-18 22:06:49 +00:00
|
|
|
message.c
|
2016-08-09 22:10:05 +00:00
|
|
|
stubs.c
|
2014-09-22 19:24:12 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/fltlib.def)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(fltlib MODULE ${SOURCE} rsrc.rc)
|
2014-09-22 19:24:12 +00:00
|
|
|
set_module_type(fltlib win32dll)
|
|
|
|
target_link_libraries(fltlib wine)
|
2017-05-18 22:06:49 +00:00
|
|
|
add_target_compile_definitions(fltlib NTDDI_VERSION=NTDDI_WS03SP1)
|
2014-09-22 19:24:12 +00:00
|
|
|
add_importlibs(fltlib msvcrt kernel32 ntdll)
|
|
|
|
add_cd_file(TARGET fltlib DESTINATION reactos/system32 FOR all)
|