reactos/modules/rosapps/applications/rosinternals/nfi/CMakeLists.txt
Pierre Schweitzer a46d9999dd
[NFI] Add a first skeleton of what NFI could be.
All it will do for now is dumping the MFT / Files and their attributes.
It lacks many features, could be really improved and is bugged.

Note that logical sectors dump seems to be broken. MS NFI and this one don't agree on values.

Developed against W2K3.
2018-01-20 14:54:00 +01:00

6 lines
204 B
CMake

list(APPEND SOURCE nfi.c nfi.rc)
add_executable(nfi ${SOURCE})
set_module_type(nfi win32cui UNICODE)
add_importlibs(nfi msvcrt kernel32 ntdll)
add_cd_file(TARGET nfi DESTINATION reactos/system32 FOR all)