[SDK] Add user-mode DMI/SMBIOS helper library

CORE-5961
This commit is contained in:
Stanislav Motylkov 2018-07-31 18:48:32 +03:00 committed by Hermès BÉLUSCA - MAÏTO
parent 22e86add33
commit 4259aab7b0
5 changed files with 226 additions and 0 deletions

View file

@ -0,0 +1,12 @@
include_directories(
${REACTOS_SOURCE_DIR}/sdk/lib/dmilib)
list(APPEND SOURCE
udmihelp.c
precomp.h)
add_library(udmihelp ${SOURCE})
target_link_libraries(udmihelp dmilib)
add_pch(udmihelp precomp.h SOURCE)
add_dependencies(udmihelp psdk)