Author: akhaldi
Date: Sat Nov 27 09:00:22 2010
New Revision: 49811
URL:
http://svn.reactos.org/svn/reactos?rev=49811&view=rev
Log:
[CMAKE]
- Fix more modules.
Modified:
branches/cmake-bringup/base/shell/explorer/notifyhook/CMakeLists.txt
branches/cmake-bringup/dll/cpl/ncpa/CMakeLists.txt
branches/cmake-bringup/dll/cpl/odbccp32/CMakeLists.txt
branches/cmake-bringup/dll/cpl/telephon/CMakeLists.txt
branches/cmake-bringup/dll/directx/amstream/CMakeLists.txt
branches/cmake-bringup/dll/directx/devenum/CMakeLists.txt
branches/cmake-bringup/dll/directx/dinput/CMakeLists.txt
branches/cmake-bringup/dll/directx/dxdiagn/CMakeLists.txt
branches/cmake-bringup/dll/directx/ksuser/CMakeLists.txt
branches/cmake-bringup/dll/win32/crtdll/CMakeLists.txt
branches/cmake-bringup/dll/win32/kernel32/CMakeLists.txt
branches/cmake-bringup/dll/win32/msvcrt/CMakeLists.txt
branches/cmake-bringup/dll/win32/msvfw32/CMakeLists.txt
branches/cmake-bringup/dll/win32/sfc_os/CMakeLists.txt
branches/cmake-bringup/dll/win32/shimgvw/CMakeLists.txt
branches/cmake-bringup/dll/win32/traffic/CMakeLists.txt
branches/cmake-bringup/dll/win32/ufat/CMakeLists.txt
branches/cmake-bringup/dll/win32/untfs/CMakeLists.txt
branches/cmake-bringup/dll/win32/user32/CMakeLists.txt
branches/cmake-bringup/dll/win32/userenv/CMakeLists.txt
branches/cmake-bringup/dll/win32/vdmdbg/CMakeLists.txt
branches/cmake-bringup/dll/win32/wldap32/CMakeLists.txt
branches/cmake-bringup/dll/win32/ws2_32_new/CMakeLists.txt
branches/cmake-bringup/dll/win32/ws2help/CMakeLists.txt
branches/cmake-bringup/dll/win32/wuapi/CMakeLists.txt
branches/cmake-bringup/dll/win32/xinput1_1/CMakeLists.txt
branches/cmake-bringup/dll/win32/xinput1_2/CMakeLists.txt
branches/cmake-bringup/dll/win32/xinput9_1_0/CMakeLists.txt
branches/cmake-bringup/dll/win32/xmllite/CMakeLists.txt
branches/cmake-bringup/subsystems/win32/csrss/win32csr/CMakeLists.txt
Modified: branches/cmake-bringup/base/shell/explorer/notifyhook/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/base/shell/explor…
==============================================================================
--- branches/cmake-bringup/base/shell/explorer/notifyhook/CMakeLists.txt [iso-8859-1]
(original)
+++ branches/cmake-bringup/base/shell/explorer/notifyhook/CMakeLists.txt [iso-8859-1] Sat
Nov 27 09:00:22 2010
@@ -1,12 +1,13 @@
+
add_definitions(-D_NOTIFYHOOK_IMPL)
-add_library(notifyhook SHARED notifyhook.c ${CMAKE_CURRENT_SOURCE_DIR}/notifyhook.rc)
+add_library(notifyhook SHARED
+ notifyhook.c
+ notifyhook.rc
+ notifyhook.def)
set_module_type(notifyhook win32dll)
-target_link_libraries(notifyhook
- ${CMAKE_CURRENT_SOURCE_DIR}/notifyhook.def
- -lkernel32
- -luser32)
+add_importlibs(notifyhook user32 msvcrt kernel32)
-add_cab_target(notifyhook 1)
+add_cab_target(notifyhook 1)
Modified: branches/cmake-bringup/dll/cpl/ncpa/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/cpl/ncpa/CMak…
==============================================================================
--- branches/cmake-bringup/dll/cpl/ncpa/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/cpl/ncpa/CMakeLists.txt [iso-8859-1] Sat Nov 27 09:00:22
2010
@@ -10,6 +10,7 @@
add_importlibs(ncpa
msvcrt
advapi32
- shell32)
+ shell32
+ kernel32)
add_cab_target(ncpa 1)
Modified: branches/cmake-bringup/dll/cpl/odbccp32/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/cpl/odbccp32/…
==============================================================================
--- branches/cmake-bringup/dll/cpl/odbccp32/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/cpl/odbccp32/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -7,5 +7,5 @@
set_module_type(odbccp32i cpl)
-add_importlibs(odbccp32i user32 comctl32 kernel32)
+add_importlibs(odbccp32i user32 comctl32 msvcrt kernel32)
add_cab_target(odbccp32i 1)
Modified: branches/cmake-bringup/dll/cpl/telephon/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/cpl/telephon/…
==============================================================================
--- branches/cmake-bringup/dll/cpl/telephon/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/cpl/telephon/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -15,6 +15,7 @@
comctl32
ole32
shell32
+ msvcrt
kernel32)
add_cab_target(telephon 1)
Modified: branches/cmake-bringup/dll/directx/amstream/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/directx/amstr…
==============================================================================
--- branches/cmake-bringup/dll/directx/amstream/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/directx/amstream/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -26,6 +26,7 @@
add_importlibs(amstream
ole32
advapi32
+ msvcrt
kernel32
ntdll)
Modified: branches/cmake-bringup/dll/directx/devenum/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/directx/deven…
==============================================================================
--- branches/cmake-bringup/dll/directx/devenum/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/directx/devenum/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -30,6 +30,7 @@
winmm
user32
avicap32
+ msvcrt
kernel32
ntdll)
Modified: branches/cmake-bringup/dll/directx/dinput/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/directx/dinpu…
==============================================================================
--- branches/cmake-bringup/dll/directx/dinput/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/directx/dinput/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -32,6 +32,7 @@
advapi32
ole32
winmm
+ msvcrt
kernel32
ntdll)
Modified: branches/cmake-bringup/dll/directx/dxdiagn/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/directx/dxdia…
==============================================================================
--- branches/cmake-bringup/dll/directx/dxdiagn/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/directx/dxdiagn/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -23,6 +23,7 @@
advapi32
ole32
oleaut32
+ msvcrt
kernel32
ntdll)
Modified: branches/cmake-bringup/dll/directx/ksuser/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/directx/ksuse…
==============================================================================
--- branches/cmake-bringup/dll/directx/ksuser/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/directx/ksuser/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -5,6 +5,6 @@
set_module_type(ksuser win32dll)
-add_importlibs(ksuser advapi32 kernel32 ntdll)
+add_importlibs(ksuser advapi32 msvcrt kernel32 ntdll)
add_dependencies(ksuser psdk bugcodes)
add_cab_target(ksuser 1)
Modified: branches/cmake-bringup/dll/win32/crtdll/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/crtdll/…
==============================================================================
--- branches/cmake-bringup/dll/win32/crtdll/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/crtdll/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -25,6 +25,8 @@
set_module_type(crtdll win32dll)
+set_entrypoint(crtdll DllMain@12)
+
target_link_libraries(crtdll
wine
crt)
Modified: branches/cmake-bringup/dll/win32/kernel32/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/kernel3…
==============================================================================
--- branches/cmake-bringup/dll/win32/kernel32/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/kernel32/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -113,6 +113,7 @@
${SOURCE})
set_module_type(kernel32 win32dll)
+set_entrypoint(kernel32 DllMain@12)
target_link_libraries(kernel32 ${PSEH_LIB})
Modified: branches/cmake-bringup/dll/win32/msvcrt/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/msvcrt/…
==============================================================================
--- branches/cmake-bringup/dll/win32/msvcrt/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/msvcrt/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -26,7 +26,10 @@
if (NOT MSVC)
set_target_properties(msvcrt PROPERTIES LINK_FLAGS "-u
__seh_longjmp_unwind@4")
endif()
+
set_module_type(msvcrt win32dll)
+
+set_entrypoint(msvcrt DllMain@12)
target_link_libraries(msvcrt
crt
Modified: branches/cmake-bringup/dll/win32/msvfw32/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/msvfw32…
==============================================================================
--- branches/cmake-bringup/dll/win32/msvfw32/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/msvfw32/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -17,7 +17,7 @@
target_link_libraries(msvfw32 wine)
-add_importlibs(msvfw32 winmm version comctl32 user32 gdi32 advapi32 kernel32 ntdll)
+add_importlibs(msvfw32 winmm version comctl32 user32 gdi32 advapi32 msvcrt kernel32
ntdll)
add_cab_target(msvfw32 1)
add_importlib_target(msvfw32.spec)
Modified: branches/cmake-bringup/dll/win32/sfc_os/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/sfc_os/…
==============================================================================
--- branches/cmake-bringup/dll/win32/sfc_os/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/sfc_os/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -11,7 +11,7 @@
set_module_type(sfc_os win32dll)
-add_importlibs(sfc_os kernel32 ntdll)
+add_importlibs(sfc_os msvcrt kernel32 ntdll)
add_pch(sfc_os ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
add_cab_target(sfc_os 1)
Modified: branches/cmake-bringup/dll/win32/shimgvw/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/shimgvw…
==============================================================================
--- branches/cmake-bringup/dll/win32/shimgvw/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/shimgvw/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -13,6 +13,7 @@
user32
gdi32
gdiplus
+ msvcrt
kernel32
ntdll)
Modified: branches/cmake-bringup/dll/win32/traffic/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/traffic…
==============================================================================
--- branches/cmake-bringup/dll/win32/traffic/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/traffic/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -12,6 +12,6 @@
target_link_libraries(traffic wine)
-add_importlibs(traffic kernel32 ntdll)
+add_importlibs(traffic msvcrt kernel32 ntdll)
add_dependencies(traffic psdk buildno_header)
add_cab_target(traffic 1)
Modified: branches/cmake-bringup/dll/win32/ufat/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/ufat/CM…
==============================================================================
--- branches/cmake-bringup/dll/win32/ufat/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/ufat/CMakeLists.txt [iso-8859-1] Sat Nov 27 09:00:22
2010
@@ -9,6 +9,6 @@
target_link_libraries(ufat vfatlib)
-add_importlibs(ufat kernel32 ntdll)
+add_importlibs(ufat msvcrt kernel32 ntdll)
add_cab_target(ufat 1)
Modified: branches/cmake-bringup/dll/win32/untfs/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/untfs/C…
==============================================================================
--- branches/cmake-bringup/dll/win32/untfs/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/untfs/CMakeLists.txt [iso-8859-1] Sat Nov 27 09:00:22
2010
@@ -9,6 +9,6 @@
target_link_libraries(untfs ntfslib)
-add_importlibs(untfs kernel32 ntdll)
+add_importlibs(untfs msvcrt kernel32 ntdll)
add_cab_target(untfs 1)
Modified: branches/cmake-bringup/dll/win32/user32/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/user32/…
==============================================================================
--- branches/cmake-bringup/dll/win32/user32/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/user32/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -82,7 +82,7 @@
${PSEH_LIB})
add_pch(user32 ${CMAKE_CURRENT_SOURCE_DIR}/include/user32.h ${SOURCE})
-add_importlibs(user32 gdi32 advapi32 imm32 kernel32 ntdll)
+add_importlibs(user32 gdi32 advapi32 imm32 msvcrt kernel32 ntdll)
add_cab_target(user32 1)
add_importlib_target(user32.spec)
Modified: branches/cmake-bringup/dll/win32/userenv/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/userenv…
==============================================================================
--- branches/cmake-bringup/dll/win32/userenv/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/userenv/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -22,7 +22,7 @@
target_link_libraries(userenv uuid)
-add_importlibs(userenv advapi32 user32 kernel32 ntdll)
+add_importlibs(userenv advapi32 user32 msvcrt kernel32 ntdll)
add_pch(userenv ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
add_cab_target(userenv 1)
Modified: branches/cmake-bringup/dll/win32/vdmdbg/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/vdmdbg/…
==============================================================================
--- branches/cmake-bringup/dll/win32/vdmdbg/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/vdmdbg/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -13,7 +13,7 @@
set_module_type(vdmdbg win32dll)
-add_importlibs(vdmdbg kernel32 ntdll)
+add_importlibs(vdmdbg msvcrt kernel32 ntdll)
add_pch(vdmdbg ${CMAKE_CURRENT_SOURCE_DIR}/vdmdbg.h ${SOURCE})
add_cab_target(vdmdbg 1)
Modified: branches/cmake-bringup/dll/win32/wldap32/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/wldap32…
==============================================================================
--- branches/cmake-bringup/dll/win32/wldap32/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/wldap32/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -32,6 +32,6 @@
target_link_libraries(wldap32 wine)
-add_importlibs(wldap32 user32 kernel32 ntdll)
+add_importlibs(wldap32 user32 msvcrt kernel32 ntdll)
add_cab_target(wldap32 1)
Modified: branches/cmake-bringup/dll/win32/ws2_32_new/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/ws2_32_…
==============================================================================
--- branches/cmake-bringup/dll/win32/ws2_32_new/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/ws2_32_new/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -53,6 +53,6 @@
target_link_libraries(ws2_32_new wine)
-add_importlibs(ws2_32_new user32 advapi32 dnsapi ws2help kernel32 ntdll)
+add_importlibs(ws2_32_new user32 advapi32 dnsapi ws2help msvcrt kernel32 ntdll)
add_cab_target(ws2_32_new 1)
Modified: branches/cmake-bringup/dll/win32/ws2help/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/ws2help…
==============================================================================
--- branches/cmake-bringup/dll/win32/ws2help/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/ws2help/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -13,7 +13,7 @@
set_module_type(ws2help win32dll)
-add_importlibs(ws2help advapi32 ws2_32 kernel32 ntdll)
+add_importlibs(ws2help advapi32 ws2_32 msvcrt kernel32 ntdll)
add_cab_target(ws2help 1)
add_importlib_target(ws2help.spec)
Modified: branches/cmake-bringup/dll/win32/wuapi/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/wuapi/C…
==============================================================================
--- branches/cmake-bringup/dll/win32/wuapi/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/wuapi/CMakeLists.txt [iso-8859-1] Sat Nov 27 09:00:22
2010
@@ -26,6 +26,6 @@
wine
uuid)
-add_importlibs(wuapi ole32 advapi32 kernel32 ntdll)
+add_importlibs(wuapi ole32 advapi32 msvcrt kernel32 ntdll)
add_cab_target(wuapi 1)
Modified: branches/cmake-bringup/dll/win32/xinput1_1/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/xinput1…
==============================================================================
--- branches/cmake-bringup/dll/win32/xinput1_1/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/xinput1_1/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -10,6 +10,6 @@
set_module_type(xinput1_1 win32dll)
-add_importlibs(xinput1_1 kernel32)
+add_importlibs(xinput1_1 msvcrt kernel32)
add_cab_target(xinput1_1 1)
Modified: branches/cmake-bringup/dll/win32/xinput1_2/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/xinput1…
==============================================================================
--- branches/cmake-bringup/dll/win32/xinput1_2/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/xinput1_2/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -8,7 +8,7 @@
set_source_files_properties(xinput1_2.def PROPERTIES EXTERNAL_OBJECT TRUE)
endif()
-add_importlibs(xinput1_2 kernel32)
+add_importlibs(xinput1_2 msvcrt kernel32)
set_module_type(xinput1_2 win32dll)
Modified: branches/cmake-bringup/dll/win32/xinput9_1_0/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/xinput9…
==============================================================================
--- branches/cmake-bringup/dll/win32/xinput9_1_0/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/xinput9_1_0/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -8,7 +8,7 @@
set_source_files_properties(xinput9_1_0.def PROPERTIES EXTERNAL_OBJECT TRUE)
endif()
-add_importlibs(xinput9_1_0 kernel32)
+add_importlibs(xinput9_1_0 msvcrt kernel32)
set_module_type(xinput9_1_0 win32dll)
Modified: branches/cmake-bringup/dll/win32/xmllite/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/dll/win32/xmllite…
==============================================================================
--- branches/cmake-bringup/dll/win32/xmllite/CMakeLists.txt [iso-8859-1] (original)
+++ branches/cmake-bringup/dll/win32/xmllite/CMakeLists.txt [iso-8859-1] Sat Nov 27
09:00:22 2010
@@ -11,7 +11,7 @@
target_link_libraries(xmllite
wine)
-add_importlibs(xmllite kernel32 ntdll)
+add_importlibs(xmllite msvcrt kernel32 ntdll)
add_cab_target(xmllite 1)
Modified: branches/cmake-bringup/subsystems/win32/csrss/win32csr/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/subsystems/win32/…
==============================================================================
--- branches/cmake-bringup/subsystems/win32/csrss/win32csr/CMakeLists.txt [iso-8859-1]
(original)
+++ branches/cmake-bringup/subsystems/win32/csrss/win32csr/CMakeLists.txt [iso-8859-1] Sat
Nov 27 09:00:22 2010
@@ -36,7 +36,7 @@
set_module_type(win32csr win32dll)
-add_importlibs(win32csr user32 gdi32 advapi32 psapi kernel32 ntdll)
+add_importlibs(win32csr user32 gdi32 advapi32 psapi msvcrt kernel32 ntdll)
add_pch(win32csr ${CMAKE_CURRENT_SOURCE_DIR}/w32csr.h ${SOURCE})