diff --git a/base/applications/CMakeLists.txt b/base/applications/CMakeLists.txt index e4ee917f2d9..75fd0c8cccd 100644 --- a/base/applications/CMakeLists.txt +++ b/base/applications/CMakeLists.txt @@ -27,7 +27,7 @@ add_subdirectory(regedt32) add_subdirectory(sc) #add_subdirectory(screensavers) add_subdirectory(shutdown) -add_subdirectory(sndrec32) +#add_subdirectory(sndrec32) add_subdirectory(sndvol32) add_subdirectory(taskmgr) add_subdirectory(winhlp32) diff --git a/base/applications/cmdutils/dbgprint/CMakeLists.txt b/base/applications/cmdutils/dbgprint/CMakeLists.txt index 0a9dd1af9b8..4ec6ed03fa8 100644 --- a/base/applications/cmdutils/dbgprint/CMakeLists.txt +++ b/base/applications/cmdutils/dbgprint/CMakeLists.txt @@ -2,4 +2,4 @@ add_executable(dbgprint dbgprint.c) set_module_type(dbgprint win32cui) -add_importlibs(dbgprint msvcrt) +add_importlibs(dbgprint msvcrt kernel32) diff --git a/base/applications/cmdutils/doskey/CMakeLists.txt b/base/applications/cmdutils/doskey/CMakeLists.txt index 5b52082df5f..972ca872291 100644 --- a/base/applications/cmdutils/doskey/CMakeLists.txt +++ b/base/applications/cmdutils/doskey/CMakeLists.txt @@ -4,4 +4,4 @@ set_unicode() add_executable(doskey doskey.c doskey.rc) set_module_type(doskey win32cui) -add_importlibs(doskey user32 msvcrt) +add_importlibs(doskey user32 msvcrt kernel32) diff --git a/base/applications/cmdutils/find/CMakeLists.txt b/base/applications/cmdutils/find/CMakeLists.txt index db028672ca2..bd897d81ff3 100644 --- a/base/applications/cmdutils/find/CMakeLists.txt +++ b/base/applications/cmdutils/find/CMakeLists.txt @@ -2,4 +2,4 @@ add_executable(find find.c find.rc) set_module_type(find win32cui) -add_importlibs(find user32 msvcrt) +add_importlibs(find user32 msvcrt kernel32) diff --git a/base/applications/cmdutils/hostname/CMakeLists.txt b/base/applications/cmdutils/hostname/CMakeLists.txt index a52cda03759..e22e80f64ea 100644 --- a/base/applications/cmdutils/hostname/CMakeLists.txt +++ b/base/applications/cmdutils/hostname/CMakeLists.txt @@ -2,4 +2,4 @@ add_executable(hostname hostname.c hostname.rc) set_module_type(hostname win32cui) -add_importlibs(hostname msvcrt) +add_importlibs(hostname msvcrt kernel32) diff --git a/base/applications/cmdutils/lodctr/CMakeLists.txt b/base/applications/cmdutils/lodctr/CMakeLists.txt index c14d39fee7d..123438fb543 100644 --- a/base/applications/cmdutils/lodctr/CMakeLists.txt +++ b/base/applications/cmdutils/lodctr/CMakeLists.txt @@ -4,4 +4,4 @@ set_unicode() add_executable(lodctr lodctr_main.c) set_module_type(lodctr win32cui) -add_importlibs(lodctr loadperf msvcrt) +add_importlibs(lodctr loadperf msvcrt kernel32) diff --git a/base/applications/cmdutils/more/CMakeLists.txt b/base/applications/cmdutils/more/CMakeLists.txt index 08ff4863a91..849b07454f0 100644 --- a/base/applications/cmdutils/more/CMakeLists.txt +++ b/base/applications/cmdutils/more/CMakeLists.txt @@ -2,4 +2,4 @@ add_executable(more more.c more.rc) set_module_type(more win32cui) -add_importlibs(more user32 msvcrt) +add_importlibs(more user32 msvcrt kernel32) diff --git a/base/applications/cmdutils/reg/CMakeLists.txt b/base/applications/cmdutils/reg/CMakeLists.txt index 7a218f875a5..a7b102e0d02 100644 --- a/base/applications/cmdutils/reg/CMakeLists.txt +++ b/base/applications/cmdutils/reg/CMakeLists.txt @@ -7,4 +7,4 @@ add_definitions(-D_WIN32_WINNT=0x600) add_executable(reg reg.c rsrc.rc) set_module_type(reg win32cui) -add_importlibs(reg advapi32 user32 msvcrt) +add_importlibs(reg advapi32 user32 msvcrt kernel32) diff --git a/base/applications/cmdutils/xcopy/CMakeLists.txt b/base/applications/cmdutils/xcopy/CMakeLists.txt index 393eb06de2e..a82deedb755 100644 --- a/base/applications/cmdutils/xcopy/CMakeLists.txt +++ b/base/applications/cmdutils/xcopy/CMakeLists.txt @@ -6,4 +6,4 @@ add_executable(xcopy xcopy.c rsrc.rc) target_link_libraries(xcopy wine) set_module_type(xcopy win32cui) -add_importlibs(xcopy shell32 user32 msvcrt) +add_importlibs(xcopy shell32 user32 msvcrt kernel32 ntdll) diff --git a/base/applications/control/CMakeLists.txt b/base/applications/control/CMakeLists.txt index a54569475a7..4efd9a7b5a8 100644 --- a/base/applications/control/CMakeLists.txt +++ b/base/applications/control/CMakeLists.txt @@ -4,4 +4,4 @@ set_unicode() add_executable(control control.c control.rc) set_module_type(control win32gui) -add_importlibs(control advapi32 shell32 msvcrt) +add_importlibs(control advapi32 shell32 msvcrt kernel32) diff --git a/base/applications/dxdiag/CMakeLists.txt b/base/applications/dxdiag/CMakeLists.txt index b4b23d40405..ddfefbb5412 100644 --- a/base/applications/dxdiag/CMakeLists.txt +++ b/base/applications/dxdiag/CMakeLists.txt @@ -27,4 +27,4 @@ set_module_type(dxdiag win32gui) target_link_libraries(dxdiag dxguid) -add_importlibs(dxdiag user32 advapi32 comctl32 dinput8 setupapi dsound ddraw version gdi32 winmm d3d9 msvcrt) +add_importlibs(dxdiag user32 advapi32 comctl32 dinput8 setupapi dsound ddraw version gdi32 winmm d3d9 msvcrt kernel32) diff --git a/base/applications/extrac32/CMakeLists.txt b/base/applications/extrac32/CMakeLists.txt index edc4205fad6..27068311f2b 100644 --- a/base/applications/extrac32/CMakeLists.txt +++ b/base/applications/extrac32/CMakeLists.txt @@ -6,4 +6,4 @@ add_executable(extrac32 extrac32.c) target_link_libraries(extrac32 wine) set_module_type(extrac32 win32gui) -add_importlibs(extrac32 shell32 setupapi shlwapi user32 msvcrt) +add_importlibs(extrac32 shell32 setupapi shlwapi user32 msvcrt kernel32 ntdll) diff --git a/base/applications/fontview/CMakeLists.txt b/base/applications/fontview/CMakeLists.txt index 56adb0f0b15..f564e6eed02 100644 --- a/base/applications/fontview/CMakeLists.txt +++ b/base/applications/fontview/CMakeLists.txt @@ -5,4 +5,4 @@ add_executable(fontview fontview.rc) set_module_type(fontview win32gui) -add_importlibs(fontview gdi32 shell32 user32 msvcrt) +add_importlibs(fontview gdi32 shell32 user32 msvcrt kernel32) diff --git a/base/applications/games/CMakeLists.txt b/base/applications/games/CMakeLists.txt index f82ff81eb3c..0fc56018969 100644 --- a/base/applications/games/CMakeLists.txt +++ b/base/applications/games/CMakeLists.txt @@ -1,4 +1,4 @@ -add_subdirectory(solitaire) +#add_subdirectory(solitaire) #add_subdirectory(spider) add_subdirectory(winemine) diff --git a/base/applications/games/winemine/CMakeLists.txt b/base/applications/games/winemine/CMakeLists.txt index 2d19c3e89ac..844eefe0cbe 100644 --- a/base/applications/games/winemine/CMakeLists.txt +++ b/base/applications/games/winemine/CMakeLists.txt @@ -11,4 +11,4 @@ add_executable(winemine rsrc.rc) set_module_type(winemine win32gui) -add_importlibs(winemine user32 gdi32 advapi32 shell32 msvcrt) +add_importlibs(winemine user32 gdi32 advapi32 shell32 msvcrt kernel32) diff --git a/base/applications/hh/CMakeLists.txt b/base/applications/hh/CMakeLists.txt index bad7365f7c2..edbcf567913 100644 --- a/base/applications/hh/CMakeLists.txt +++ b/base/applications/hh/CMakeLists.txt @@ -2,4 +2,4 @@ add_executable(hh main.c hh.rc) set_module_type(hh win32gui) -add_importlibs(hh gdi32 user32 msvcrt) +add_importlibs(hh gdi32 user32 msvcrt kernel32) diff --git a/base/applications/iexplore/CMakeLists.txt b/base/applications/iexplore/CMakeLists.txt index eff630e3da2..c37165b2db2 100644 --- a/base/applications/iexplore/CMakeLists.txt +++ b/base/applications/iexplore/CMakeLists.txt @@ -2,4 +2,4 @@ add_executable(iexplore main.c iexplore.rc) set_module_type(iexplore win32gui) -add_importlibs(iexplore shdocvw msvcrt) +add_importlibs(iexplore shdocvw msvcrt kernel32) diff --git a/base/applications/kbswitch/CMakeLists.txt b/base/applications/kbswitch/CMakeLists.txt index 1a775568d52..644de554104 100644 --- a/base/applications/kbswitch/CMakeLists.txt +++ b/base/applications/kbswitch/CMakeLists.txt @@ -4,6 +4,6 @@ set_unicode() add_executable(kbswitch kbswitch.c kbswitch.rc) set_module_type(kbswitch win32gui) -add_importlibs(kbswitch advapi32 user32 shell32 gdi32 msvcrt) +add_importlibs(kbswitch advapi32 user32 shell32 gdi32 msvcrt kernel32) add_subdirectory(kbsdll) diff --git a/base/applications/logoff/CMakeLists.txt b/base/applications/logoff/CMakeLists.txt index 1cd66e0511b..35a8b8d1a2c 100644 --- a/base/applications/logoff/CMakeLists.txt +++ b/base/applications/logoff/CMakeLists.txt @@ -10,4 +10,4 @@ add_pch(logoff ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE}) set_module_type(logoff win32cui) -add_importlibs(logoff advapi32 user32 msvcrt) +add_importlibs(logoff advapi32 user32 msvcrt kernel32) diff --git a/base/applications/magnify/CMakeLists.txt b/base/applications/magnify/CMakeLists.txt index 00230420755..36a5d338420 100644 --- a/base/applications/magnify/CMakeLists.txt +++ b/base/applications/magnify/CMakeLists.txt @@ -6,4 +6,4 @@ add_executable(magnify set_module_type(magnify win32gui) -add_importlibs(magnify user32 gdi32 advapi32 shell32 msvcrt) +add_importlibs(magnify user32 gdi32 advapi32 shell32 msvcrt kernel32) diff --git a/base/applications/mmc/CMakeLists.txt b/base/applications/mmc/CMakeLists.txt index 348df607465..28ed84911f2 100644 --- a/base/applications/mmc/CMakeLists.txt +++ b/base/applications/mmc/CMakeLists.txt @@ -13,4 +13,4 @@ add_pch(mmcclient ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE}) set_module_type(mmcclient win32gui) -add_importlibs(mmcclient user32 gdi32 comdlg32 advapi32 shell32 comctl32 msvcrt) +add_importlibs(mmcclient user32 gdi32 comdlg32 advapi32 shell32 comctl32 msvcrt kernel32) diff --git a/base/applications/mplay32/CMakeLists.txt b/base/applications/mplay32/CMakeLists.txt index 21fdac1dccf..99495cf0e68 100644 --- a/base/applications/mplay32/CMakeLists.txt +++ b/base/applications/mplay32/CMakeLists.txt @@ -5,4 +5,4 @@ add_executable(mplay32 mplay32.c mplay32.rc) set_module_type(mplay32 win32gui) -add_importlibs(mplay32 advapi32 comctl32 comdlg32 user32 gdi32 winmm shell32 msvcrt) +add_importlibs(mplay32 advapi32 comctl32 comdlg32 user32 gdi32 winmm shell32 msvcrt kernel32) diff --git a/base/applications/msconfig/CMakeLists.txt b/base/applications/msconfig/CMakeLists.txt index cd34da78a3c..c5791b3065b 100644 --- a/base/applications/msconfig/CMakeLists.txt +++ b/base/applications/msconfig/CMakeLists.txt @@ -17,4 +17,4 @@ add_pch(msconfig ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE}) set_module_type(msconfig win32gui) -add_importlibs(msconfig user32 advapi32 version comctl32 shell32 shlwapi msvcrt) +add_importlibs(msconfig user32 advapi32 version comctl32 shell32 shlwapi msvcrt kernel32) diff --git a/base/applications/mscutils/devmgmt/CMakeLists.txt b/base/applications/mscutils/devmgmt/CMakeLists.txt index effad6f8c82..4e777851f87 100644 --- a/base/applications/mscutils/devmgmt/CMakeLists.txt +++ b/base/applications/mscutils/devmgmt/CMakeLists.txt @@ -15,4 +15,4 @@ add_pch(devmgmt ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE}) set_module_type(devmgmt win32gui) -add_importlibs(devmgmt setupapi gdi32 user32 comctl32 advapi32 devmgr msvcrt) +add_importlibs(devmgmt setupapi gdi32 user32 comctl32 advapi32 devmgr msvcrt kernel32) diff --git a/base/applications/mscutils/eventvwr/CMakeLists.txt b/base/applications/mscutils/eventvwr/CMakeLists.txt index fdb0803cfcc..c348ba9bcff 100644 --- a/base/applications/mscutils/eventvwr/CMakeLists.txt +++ b/base/applications/mscutils/eventvwr/CMakeLists.txt @@ -5,4 +5,4 @@ add_executable(eventvwr eventvwr.c eventvwr.rc) set_module_type(eventvwr win32gui) -add_importlibs(eventvwr user32 comctl32 advapi32 msvcrt) +add_importlibs(eventvwr user32 comctl32 advapi32 msvcrt kernel32) diff --git a/base/applications/mscutils/servman/CMakeLists.txt b/base/applications/mscutils/servman/CMakeLists.txt index 19304d5147e..15d503706bf 100644 --- a/base/applications/mscutils/servman/CMakeLists.txt +++ b/base/applications/mscutils/servman/CMakeLists.txt @@ -29,4 +29,4 @@ add_pch(servman ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE}) set_module_type(servman win32gui) -add_importlibs(servman user32 gdi32 advapi32 version comctl32 shell32 comdlg32 msvcrt) +add_importlibs(servman user32 gdi32 advapi32 version comctl32 shell32 comdlg32 msvcrt kernel32) diff --git a/base/applications/mstsc/CMakeLists.txt b/base/applications/mstsc/CMakeLists.txt index 1ee86996e13..8bed8dbfaf5 100644 --- a/base/applications/mstsc/CMakeLists.txt +++ b/base/applications/mstsc/CMakeLists.txt @@ -29,4 +29,4 @@ add_pch(mstsc ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE}) set_module_type(mstsc win32gui) -add_importlibs(mstsc user32 gdi32 comctl32 ws2_32 advapi32 shell32 ole32 comdlg32 msvcrt) +add_importlibs(mstsc user32 gdi32 comctl32 ws2_32 advapi32 shell32 ole32 comdlg32 msvcrt kernel32) diff --git a/base/applications/network/CMakeLists.txt b/base/applications/network/CMakeLists.txt index 277cd521764..6f02c2e489c 100644 --- a/base/applications/network/CMakeLists.txt +++ b/base/applications/network/CMakeLists.txt @@ -9,6 +9,6 @@ add_subdirectory(netstat) add_subdirectory(nslookup) add_subdirectory(ping) #add_subdirectory(route) -add_subdirectory(telnet) +#add_subdirectory(telnet) add_subdirectory(tracert) #add_subdirectory(whois) diff --git a/base/applications/network/arp/CMakeLists.txt b/base/applications/network/arp/CMakeLists.txt index 19454756944..3805a59cb7d 100644 --- a/base/applications/network/arp/CMakeLists.txt +++ b/base/applications/network/arp/CMakeLists.txt @@ -3,4 +3,4 @@ add_executable(arp arp.c arp.rc) set_module_type(arp win32cui) -add_importlibs(arp iphlpapi ws2_32 shlwapi msvcrt) +add_importlibs(arp iphlpapi ws2_32 shlwapi msvcrt kernel32) diff --git a/base/applications/network/dwnl/CMakeLists.txt b/base/applications/network/dwnl/CMakeLists.txt index 3877a04339b..e6c48440c8c 100644 --- a/base/applications/network/dwnl/CMakeLists.txt +++ b/base/applications/network/dwnl/CMakeLists.txt @@ -7,4 +7,4 @@ set_module_type(dwnl win32cui) target_link_libraries(dwnl uuid) -add_importlibs(dwnl urlmon wininet uuid msvcrt) +add_importlibs(dwnl urlmon wininet msvcrt kernel32) diff --git a/base/applications/network/finger/CMakeLists.txt b/base/applications/network/finger/CMakeLists.txt index f521a0303a3..a2922b6550d 100644 --- a/base/applications/network/finger/CMakeLists.txt +++ b/base/applications/network/finger/CMakeLists.txt @@ -9,4 +9,4 @@ add_executable(finger set_module_type(finger win32cui) -add_importlibs(finger ws2_32 msvcrt) +add_importlibs(finger ws2_32 msvcrt kernel32) diff --git a/base/applications/network/ftp/CMakeLists.txt b/base/applications/network/ftp/CMakeLists.txt index 65414a847f5..a04e8d453c0 100644 --- a/base/applications/network/ftp/CMakeLists.txt +++ b/base/applications/network/ftp/CMakeLists.txt @@ -10,4 +10,4 @@ add_executable(ftp set_module_type(ftp win32cui) -add_importlibs(ftp ws2_32 iphlpapi msvcrt) +add_importlibs(ftp ws2_32 iphlpapi msvcrt kernel32) diff --git a/base/applications/network/ipconfig/CMakeLists.txt b/base/applications/network/ipconfig/CMakeLists.txt index 69c6fdbd8b6..0bdb4a3b04e 100644 --- a/base/applications/network/ipconfig/CMakeLists.txt +++ b/base/applications/network/ipconfig/CMakeLists.txt @@ -3,4 +3,4 @@ add_executable(ipconfig ipconfig.c ipconfig.rc) set_module_type(ipconfig win32cui) -add_importlibs(ipconfig user32 iphlpapi advapi32 msvcrt) +add_importlibs(ipconfig user32 iphlpapi advapi32 msvcrt kernel32) diff --git a/base/applications/network/net/CMakeLists.txt b/base/applications/network/net/CMakeLists.txt index e9aa95f441c..413a05c5528 100644 --- a/base/applications/network/net/CMakeLists.txt +++ b/base/applications/network/net/CMakeLists.txt @@ -12,4 +12,4 @@ add_executable(net ${SOURCE}) set_module_type(net win32cui) -add_importlibs(net ws2_32 msvcrt) +add_importlibs(net ws2_32 msvcrt kernel32) diff --git a/base/applications/network/netstat/CMakeLists.txt b/base/applications/network/netstat/CMakeLists.txt index c2d7f3e2342..b14d85d8853 100644 --- a/base/applications/network/netstat/CMakeLists.txt +++ b/base/applications/network/netstat/CMakeLists.txt @@ -3,4 +3,4 @@ add_executable(netstat netstat.c netstat.rc) set_module_type(netstat win32cui) -add_importlibs(netstat user32 ws2_32 snmpapi iphlpapi msvcrt) +add_importlibs(netstat user32 ws2_32 snmpapi iphlpapi msvcrt kernel32) diff --git a/base/applications/network/nslookup/CMakeLists.txt b/base/applications/network/nslookup/CMakeLists.txt index e3e27ffefbd..f019fade6eb 100644 --- a/base/applications/network/nslookup/CMakeLists.txt +++ b/base/applications/network/nslookup/CMakeLists.txt @@ -6,4 +6,4 @@ add_executable(nslookup set_module_type(nslookup win32cui) -add_importlibs(nslookup user32 ws2_32 snmpapi iphlpapi msvcrt) +add_importlibs(nslookup user32 ws2_32 snmpapi iphlpapi msvcrt kernel32) diff --git a/base/applications/network/ping/CMakeLists.txt b/base/applications/network/ping/CMakeLists.txt index 5b796bfc0bd..6fb1e80647b 100644 --- a/base/applications/network/ping/CMakeLists.txt +++ b/base/applications/network/ping/CMakeLists.txt @@ -4,4 +4,4 @@ add_executable(ping ping.c ping.rc) set_module_type(ping win32cui) -add_importlibs(ping ws2_32 msvcrt) +add_importlibs(ping ws2_32 msvcrt kernel32) diff --git a/base/applications/network/route/CMakeLists.txt b/base/applications/network/route/CMakeLists.txt index e26038cf07c..0ff89e7118e 100644 --- a/base/applications/network/route/CMakeLists.txt +++ b/base/applications/network/route/CMakeLists.txt @@ -4,4 +4,4 @@ set_unicode() add_executable(route route.c route.rc) set_module_type(route win32cui) -add_importlibs(route ws2_32 iphlpapi msvcrt) +add_importlibs(route ws2_32 iphlpapi msvcrt kernel32) diff --git a/base/applications/network/telnet/CMakeLists.txt b/base/applications/network/telnet/CMakeLists.txt index 7ca9b8c6c95..d381a5bb166 100644 --- a/base/applications/network/telnet/CMakeLists.txt +++ b/base/applications/network/telnet/CMakeLists.txt @@ -26,4 +26,4 @@ target_link_libraries(telnet stlport) set_module_type(telnet win32cui) -add_importlibs(telnet ws2_32 user32 msvcrt) +add_importlibs(telnet ws2_32 user32 msvcrt kernel32) diff --git a/base/applications/network/tracert/CMakeLists.txt b/base/applications/network/tracert/CMakeLists.txt index 9461a0f2485..a4dbe9231ab 100644 --- a/base/applications/network/tracert/CMakeLists.txt +++ b/base/applications/network/tracert/CMakeLists.txt @@ -4,4 +4,4 @@ add_executable(tracert tracert.c tracert.rc) set_module_type(tracert win32cui) -add_importlibs(tracert ws2_32 msvcrt) +add_importlibs(tracert ws2_32 msvcrt kernel32) diff --git a/base/applications/network/whois/CMakeLists.txt b/base/applications/network/whois/CMakeLists.txt index bafd462bd4a..f94bcc95e5d 100644 --- a/base/applications/network/whois/CMakeLists.txt +++ b/base/applications/network/whois/CMakeLists.txt @@ -3,4 +3,4 @@ add_executable(whois whois.c whois.rc) set_module_type(whois win32cui) -add_importlibs(whois ws2_32 msvcrt) +add_importlibs(whois ws2_32 msvcrt kernel32) diff --git a/base/applications/paint/CMakeLists.txt b/base/applications/paint/CMakeLists.txt index 8c3eacfde83..3622ac6a3d0 100644 --- a/base/applications/paint/CMakeLists.txt +++ b/base/applications/paint/CMakeLists.txt @@ -18,4 +18,4 @@ add_executable(paint set_module_type(paint win32gui) -add_importlibs(paint comdlg32 shell32 user32 gdi32 advapi32 comctl32 msvcrt) +add_importlibs(paint comdlg32 shell32 user32 gdi32 advapi32 comctl32 msvcrt kernel32) diff --git a/base/applications/regedit/CMakeLists.txt b/base/applications/regedit/CMakeLists.txt index 097ef22394e..cc5ce0fe3da 100644 --- a/base/applications/regedit/CMakeLists.txt +++ b/base/applications/regedit/CMakeLists.txt @@ -26,6 +26,6 @@ set_module_type(regedit win32gui) target_link_libraries(regedit uuid) -add_importlibs(regedit user32 gdi32 advapi32 ole32 shell32 comctl32 comdlg32 shlwapi msvcrt) +add_importlibs(regedit user32 gdi32 advapi32 ole32 shell32 comctl32 comdlg32 shlwapi msvcrt kernel32) #add_subdirectory(clb) diff --git a/base/applications/regedt32/CMakeLists.txt b/base/applications/regedt32/CMakeLists.txt index 3680709fafa..f1975ea73fe 100644 --- a/base/applications/regedt32/CMakeLists.txt +++ b/base/applications/regedt32/CMakeLists.txt @@ -5,4 +5,4 @@ add_executable(regedt32 regedt32.c resource.rc) set_module_type(regedt32 win32gui) -add_importlibs(regedt32 shell32 shlwapi msvcrt) +add_importlibs(regedt32 shell32 shlwapi msvcrt kernel32) diff --git a/base/applications/sc/CMakeLists.txt b/base/applications/sc/CMakeLists.txt index 62c99de3b04..7d67a09b5dc 100644 --- a/base/applications/sc/CMakeLists.txt +++ b/base/applications/sc/CMakeLists.txt @@ -19,4 +19,4 @@ add_pch(sc ${CMAKE_CURRENT_SOURCE_DIR}/sc.h ${SOURCE}) set_module_type(sc win32cui) -add_importlibs(sc advapi32 msvcrt) +add_importlibs(sc advapi32 msvcrt kernel32) diff --git a/base/applications/shutdown/CMakeLists.txt b/base/applications/shutdown/CMakeLists.txt index 8315d88599c..e726379cc13 100644 --- a/base/applications/shutdown/CMakeLists.txt +++ b/base/applications/shutdown/CMakeLists.txt @@ -10,4 +10,4 @@ add_pch(shutdown ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE}) set_module_type(shutdown win32cui) -add_importlibs(shutdown advapi32 user32 msvcrt) +add_importlibs(shutdown advapi32 user32 msvcrt kernel32) diff --git a/base/applications/sndvol32/CMakeLists.txt b/base/applications/sndvol32/CMakeLists.txt index b2845bdd6ca..4ac9f4930b4 100644 --- a/base/applications/sndvol32/CMakeLists.txt +++ b/base/applications/sndvol32/CMakeLists.txt @@ -13,4 +13,4 @@ add_pch(sndvol32 ${CMAKE_CURRENT_SOURCE_DIR}/sndvol32.h ${SOURCE}) set_module_type(sndvol32 win32gui) -add_importlibs(sndvol32 user32 advapi32 gdi32 comctl32 shell32 winmm msvcrt) +add_importlibs(sndvol32 user32 advapi32 gdi32 comctl32 shell32 winmm msvcrt kernel32) diff --git a/base/applications/taskmgr/CMakeLists.txt b/base/applications/taskmgr/CMakeLists.txt index f9ca07a76d9..81a6a6387d5 100644 --- a/base/applications/taskmgr/CMakeLists.txt +++ b/base/applications/taskmgr/CMakeLists.txt @@ -28,4 +28,4 @@ add_pch(taskmgr ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE}) set_module_type(taskmgr win32gui) -add_importlibs(taskmgr advapi32 user32 gdi32 shell32 comctl32 msvcrt) +add_importlibs(taskmgr advapi32 user32 gdi32 shell32 comctl32 msvcrt kernel32 ntdll) diff --git a/base/applications/winhlp32/CMakeLists.txt b/base/applications/winhlp32/CMakeLists.txt index ac59d1ecb83..b98e4391c72 100644 --- a/base/applications/winhlp32/CMakeLists.txt +++ b/base/applications/winhlp32/CMakeLists.txt @@ -18,4 +18,4 @@ set_module_type(winhlp32 win32gui) target_link_libraries(winhlp32 wine) -add_importlibs(winhlp32 user32 gdi32 shell32 comctl32 comdlg32 msvcrt) +add_importlibs(winhlp32 user32 gdi32 shell32 comctl32 comdlg32 msvcrt kernel32) diff --git a/base/applications/winver/CMakeLists.txt b/base/applications/winver/CMakeLists.txt index 8de258c20ee..1b92d6c8b7f 100644 --- a/base/applications/winver/CMakeLists.txt +++ b/base/applications/winver/CMakeLists.txt @@ -5,4 +5,4 @@ add_executable(winver winver.c) set_module_type(winver win32gui) -add_importlibs(winver shell32 msvcrt) +add_importlibs(winver shell32 msvcrt kernel32) diff --git a/base/applications/write/CMakeLists.txt b/base/applications/write/CMakeLists.txt index fcf2ed42ecf..e0ae8a0ae27 100644 --- a/base/applications/write/CMakeLists.txt +++ b/base/applications/write/CMakeLists.txt @@ -5,4 +5,4 @@ add_executable(write write.c rsrc.rc) set_module_type(write win32gui) -add_importlibs(write user32 gdi32 msvcrt) +add_importlibs(write user32 gdi32 msvcrt kernel32) diff --git a/base/shell/CMakeLists.txt b/base/shell/CMakeLists.txt index dc06a56fcda..9563884b49b 100644 --- a/base/shell/CMakeLists.txt +++ b/base/shell/CMakeLists.txt @@ -1,4 +1,4 @@ add_subdirectory(cmd) -add_subdirectory(explorer) +#add_subdirectory(explorer) add_subdirectory(explorer-new) diff --git a/dll/win32/olecli32/CMakeLists.txt b/dll/win32/olecli32/CMakeLists.txt index 1d5a99ee036..c4d0284a188 100644 --- a/dll/win32/olecli32/CMakeLists.txt +++ b/dll/win32/olecli32/CMakeLists.txt @@ -12,5 +12,5 @@ target_link_libraries(olecli32 ${CMAKE_CURRENT_BINARY_DIR}/olecli32.def wine) -add_importlibs(oleacc ole32 gdi32 kernel32 ntdll) +add_importlibs(olecli32 ole32 gdi32 kernel32 ntdll) add_dependencies(olecli32 olecli32_def psdk buildno_header) diff --git a/dll/win32/shlwapi/CMakeLists.txt b/dll/win32/shlwapi/CMakeLists.txt index e51081ac47d..b7abf5618e9 100644 --- a/dll/win32/shlwapi/CMakeLists.txt +++ b/dll/win32/shlwapi/CMakeLists.txt @@ -43,6 +43,9 @@ add_importlibs(shlwapi mlang urlmon winmm - version) + version + shell32 + kernel32 + ntdll) add_dependencies(shlwapi shlwapi_def) diff --git a/drivers/wdm/audio/backpln/audio_test/CMakeLists.txt b/drivers/wdm/audio/backpln/audio_test/CMakeLists.txt index ef842a007eb..f71c21ab311 100644 --- a/drivers/wdm/audio/backpln/audio_test/CMakeLists.txt +++ b/drivers/wdm/audio/backpln/audio_test/CMakeLists.txt @@ -1,18 +1,17 @@ add_definitions(-DPC_NO_IMPORTS) -include_directories(${REACTOS_SOURCE_DIR}/include/reactos/libs/sound) -include_directories(${REACTOS_SOURCE_DIR}/drivers/wdm/audio/legacy/wdmaud) -include_directories(${REACTOS_SOURCE_DIR}/lib/3rdparty/libsamplerate) +include_directories( + ${REACTOS_SOURCE_DIR}/include/reactos/libs/sound + ${REACTOS_SOURCE_DIR}/drivers/wdm/audio/legacy/wdmaud + ${REACTOS_SOURCE_DIR}/lib/3rdparty/libsamplerate) add_executable(audio_test audio_test.c) set_module_type(audio_test win32cui) target_link_libraries(audio_test - libsamplerate - mingw_main - mingw_common) + libsamplerate) -add_importlibs(audio_test setupapi ksuser msvcrt) -add_dependencies(audio_test psdk bugcodes) +add_importlibs(audio_test setupapi ksuser msvcrt kernel32) +add_dependencies(audio_test bugcodes)