mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
13 lines
394 B
CMake
13 lines
394 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/conutils)
|
|
|
|
list(APPEND SOURCE
|
|
certutil.c
|
|
precomp.h)
|
|
|
|
add_executable(certutil ${SOURCE})
|
|
set_module_type(certutil win32cui UNICODE)
|
|
target_link_libraries(certutil conutils ${PSEH_LIB})
|
|
add_importlibs(certutil advapi32 msvcrt kernel32)
|
|
add_pch(certutil precomp.h SOURCE)
|
|
add_cd_file(TARGET certutil DESTINATION reactos/system32 FOR all)
|