[CMAKE]
[reactos.git] / dll / win32 / untfs / CMakeLists.txt
1
2 add_library(untfs SHARED untfs.c untfs.rc untfs.def)
3
4 if(NOT MSVC)
5 set_source_files_properties(untfs.def PROPERTIES EXTERNAL_OBJECT TRUE)
6 endif()
7
8 set_module_type(untfs win32dll)
9
10 target_link_libraries(untfs ntfslib)
11
12 add_importlibs(untfs kernel32 ntdll)
13
14 add_cab_target(untfs 1)