- uext2, ufat and untfs are native dlls

svn path=/trunk/; revision=52878
This commit is contained in:
Jérôme Gardou 2011-07-25 22:16:03 +00:00
parent a70f7a4d48
commit a28a0da7f1
3 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@ list(APPEND SOURCE
add_library(uext2 SHARED ${SOURCE})
set_module_type(uext2 win32dll)
set_module_type(uext2 nativedll)
target_link_libraries(uext2 ext2lib)
add_importlibs(uext2 ntdll)
add_cd_file(TARGET uext2 DESTINATION reactos/system32 FOR all)

View file

@ -8,7 +8,7 @@ list(APPEND SOURCE
add_library(ufat SHARED ${SOURCE})
set_module_type(ufat win32dll)
set_module_type(ufat nativedll)
target_link_libraries(ufat vfatlib)
add_importlibs(ufat ntdll)
add_cd_file(TARGET ufat DESTINATION reactos/system32 FOR all)

View file

@ -8,7 +8,7 @@ list(APPEND SOURCE
add_library(untfs SHARED ${SOURCE})
set_module_type(untfs win32dll)
set_module_type(untfs nativedll)
target_link_libraries(untfs ntfslib)
add_importlibs(untfs ntdll)
add_cd_file(TARGET untfs DESTINATION reactos/system32 FOR all)