From 91428184314a0eaa693f42b17856b9c218eded24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Sun, 24 Jul 2011 17:40:53 +0000 Subject: [PATCH] [CMAKE] - ufat, ufatx, uext2 and untfs don't really need to link to kernel32 and msvcrt. svn path=/trunk/; revision=52845 --- reactos/dll/win32/uext2/CMakeLists.txt | 2 +- reactos/dll/win32/ufat/CMakeLists.txt | 2 +- reactos/dll/win32/ufatx/CMakeLists.txt | 2 +- reactos/dll/win32/untfs/CMakeLists.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/dll/win32/uext2/CMakeLists.txt b/reactos/dll/win32/uext2/CMakeLists.txt index 19858c8f0b4..b259b053cac 100644 --- a/reactos/dll/win32/uext2/CMakeLists.txt +++ b/reactos/dll/win32/uext2/CMakeLists.txt @@ -10,5 +10,5 @@ add_library(uext2 SHARED ${SOURCE}) set_module_type(uext2 win32dll) target_link_libraries(uext2 ext2lib) -add_importlibs(uext2 msvcrt kernel32 ntdll) +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 658ab44fb36..801f59eedcf 100644 --- a/reactos/dll/win32/ufat/CMakeLists.txt +++ b/reactos/dll/win32/ufat/CMakeLists.txt @@ -10,5 +10,5 @@ add_library(ufat SHARED ${SOURCE}) set_module_type(ufat win32dll) target_link_libraries(ufat vfatlib) -add_importlibs(ufat msvcrt kernel32 ntdll) +add_importlibs(ufat ntdll) add_cd_file(TARGET ufat DESTINATION reactos/system32 FOR all) diff --git a/reactos/dll/win32/ufatx/CMakeLists.txt b/reactos/dll/win32/ufatx/CMakeLists.txt index 98369440c6e..1c8704e7551 100644 --- a/reactos/dll/win32/ufatx/CMakeLists.txt +++ b/reactos/dll/win32/ufatx/CMakeLists.txt @@ -10,7 +10,7 @@ add_library(ufatx SHARED ${SOURCE}) set_entrypoint(ufatx 0) target_link_libraries(ufatx vfatxlib) -add_importlibs(ufatx msvcrt kernel32 ntdll) +add_importlibs(ufatx ntdll) add_importlib_target(ufatx.spec) add_dependencies(ufatx psdk) add_cd_file(TARGET ufatx DESTINATION reactos/system32 FOR all) diff --git a/reactos/dll/win32/untfs/CMakeLists.txt b/reactos/dll/win32/untfs/CMakeLists.txt index 0416542d1e0..5109a614539 100644 --- a/reactos/dll/win32/untfs/CMakeLists.txt +++ b/reactos/dll/win32/untfs/CMakeLists.txt @@ -10,5 +10,5 @@ add_library(untfs SHARED ${SOURCE}) set_module_type(untfs win32dll) target_link_libraries(untfs ntfslib) -add_importlibs(untfs msvcrt kernel32 ntdll) +add_importlibs(untfs ntdll) add_cd_file(TARGET untfs DESTINATION reactos/system32 FOR all)