mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
Instead define it only in 3rd-party code where required. Most of these will go away with future wine-syncs.
10 lines
380 B
CMake
10 lines
380 B
CMake
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/fmifs)
|
|
|
|
add_executable(chkdsk chkdsk.c chkdsk.rc)
|
|
set_module_type(chkdsk win32cui UNICODE)
|
|
target_compile_definitions(chkdsk PRIVATE _CRT_NON_CONFORMING_SWPRINTFS)
|
|
target_link_libraries(chkdsk conutils)
|
|
add_importlibs(chkdsk fmifs msvcrt kernel32)
|
|
add_cd_file(TARGET chkdsk DESTINATION reactos/system32 FOR all)
|