reactos/dll/win32/untfs/CMakeLists.txt
Amine Khaldi 2f6d499617 [CMAKE]
- Move more dlls with no stubs into using def files instead of spec files.

svn path=/branches/cmake-bringup/; revision=49450
2010-11-02 20:23:56 +00:00

15 lines
285 B
CMake

add_library(untfs SHARED untfs.c untfs.rc untfs.def)
if(NOT MSVC)
set_source_files_properties(untfs.def PROPERTIES EXTERNAL_OBJECT TRUE)
endif()
set_module_type(untfs win32dll)
target_link_libraries(untfs ntfslib)
add_importlibs(untfs kernel32 ntdll)
add_cab_target(untfs 1)