diff --git a/reactos/dll/win32/uext2/CMakeLists.txt b/reactos/dll/win32/uext2/CMakeLists.txt index b259b053cac..8a18c50a1ca 100644 --- a/reactos/dll/win32/uext2/CMakeLists.txt +++ b/reactos/dll/win32/uext2/CMakeLists.txt @@ -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) diff --git a/reactos/dll/win32/ufat/CMakeLists.txt b/reactos/dll/win32/ufat/CMakeLists.txt index 801f59eedcf..9548798a627 100644 --- a/reactos/dll/win32/ufat/CMakeLists.txt +++ b/reactos/dll/win32/ufat/CMakeLists.txt @@ -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) diff --git a/reactos/dll/win32/untfs/CMakeLists.txt b/reactos/dll/win32/untfs/CMakeLists.txt index 5109a614539..818df413b80 100644 --- a/reactos/dll/win32/untfs/CMakeLists.txt +++ b/reactos/dll/win32/untfs/CMakeLists.txt @@ -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)