mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
9 lines
367 B
CMake
9 lines
367 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/conutils)
|
|
|
|
add_executable(cmd_help help.c help.rc)
|
|
set_module_type(cmd_help win32cui UNICODE)
|
|
target_link_libraries(cmd_help conutils ${PSEH_LIB})
|
|
add_importlibs(cmd_help msvcrt kernel32)
|
|
set_target_properties(cmd_help PROPERTIES OUTPUT_NAME "help")
|
|
add_cd_file(TARGET cmd_help DESTINATION reactos/system32 FOR all)
|