mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
10 lines
385 B
CMake
10 lines
385 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/fmifs)
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/conutils)
|
|
|
|
add_executable(chkdsk chkdsk.c chkdsk.rc)
|
|
set_module_type(chkdsk win32cui UNICODE)
|
|
target_link_libraries(chkdsk conutils ${PSEH_LIB})
|
|
add_importlibs(chkdsk fmifs msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET chkdsk DESTINATION reactos/system32 FOR all)
|