reactos/sdk/lib/drivers/hidparser/CMakeLists.txt
Hervé Poussineau 2978d4b61b [HIDPARSE/HIDPARSER] Move HidP_* functions from hidparse.sys to hidparser library
Interface between both is not anymore the HidParser_* functions, but
the HidP_* functions and the AllocFunction/FreeFunction/DebugFunctions/
ZeroFunction/CopyFunction.
2019-05-02 20:06:47 +02:00

17 lines
305 B
CMake

add_definitions(-DUNICODE -D_UNICODE)
list(APPEND SOURCE
context.c
hidparser.c
parser.c
api.c
parser.h
hidp.c
hidp.h)
add_library(hidparser_km ${SOURCE})
add_importlibs(hidparser_km ntoskrnl)
add_dependencies(hidparser_km bugcodes xdk)
add_pch(hidparser_km parser.h SOURCE)