mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 10:03:51 +00:00
18 lines
362 B
CMake
18 lines
362 B
CMake
|
|
add_definitions(-DMKHIVE_HOST)
|
|
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/inflib
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/cmlib
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/rtl)
|
|
|
|
list(APPEND SOURCE
|
|
binhive.c
|
|
cmi.c
|
|
mkhive.c
|
|
reginf.c
|
|
registry.c
|
|
rtl.c)
|
|
|
|
add_host_tool(mkhive ${SOURCE})
|
|
target_link_libraries(mkhive unicode cmlibhost inflibhost)
|