xref: /reactos/dll/win32/untfs/CMakeLists.txt (revision 53221834)
1
2spec2def(untfs.dll untfs.spec)
3
4list(APPEND SOURCE
5    untfs.c
6    untfs.rc
7    ${CMAKE_CURRENT_BINARY_DIR}/untfs.def)
8
9add_library(untfs MODULE ${SOURCE})
10set_module_type(untfs nativedll)
11target_link_libraries(untfs ntfslib)
12add_importlibs(untfs ntdll)
13add_cd_file(TARGET untfs DESTINATION reactos/system32 FOR all)
14