Author: tfaber Date: Thu Jul 27 18:48:19 2017 New Revision: 75426
URL: http://svn.reactos.org/svn/reactos?rev=75426&view=rev Log: [DLLS] - Fix import order - Remove unnecessary imports
Modified: trunk/reactos/dll/cpl/powercfg/CMakeLists.txt trunk/reactos/dll/win32/security/CMakeLists.txt trunk/reactos/subsystems/win32/csrsrv/CMakeLists.txt
Modified: trunk/reactos/dll/cpl/powercfg/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/powercfg/CMakeLists... ============================================================================== --- trunk/reactos/dll/cpl/powercfg/CMakeLists.txt [iso-8859-1] (original) +++ trunk/reactos/dll/cpl/powercfg/CMakeLists.txt [iso-8859-1] Thu Jul 27 18:48:19 2017 @@ -18,6 +18,6 @@ ${CMAKE_CURRENT_BINARY_DIR}/powercfg.def)
set_module_type(powercfg cpl UNICODE) -add_importlibs(powercfg user32 powrprof comctl32 shell32 advapi32 msvcrt kernel32 ntdll shlwapi) +add_importlibs(powercfg shlwapi user32 powrprof comctl32 shell32 advapi32 msvcrt kernel32 ntdll) add_pch(powercfg powercfg.h SOURCE) add_cd_file(TARGET powercfg DESTINATION reactos/system32 FOR all)
Modified: trunk/reactos/dll/win32/security/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/security/CMakeLis... ============================================================================== --- trunk/reactos/dll/win32/security/CMakeLists.txt [iso-8859-1] (original) +++ trunk/reactos/dll/win32/security/CMakeLists.txt [iso-8859-1] Thu Jul 27 18:48:19 2017 @@ -8,5 +8,5 @@
add_library(security SHARED ${SOURCE}) set_module_type(security win32dll ENTRYPOINT 0 UNICODE) -add_importlibs(security secur32 advapi32 ntdll kernel32) +add_importlibs(security secur32) add_cd_file(TARGET security DESTINATION reactos/system32 FOR all)
Modified: trunk/reactos/subsystems/win32/csrsrv/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/csrsrv/CMa... ============================================================================== --- trunk/reactos/subsystems/win32/csrsrv/CMakeLists.txt [iso-8859-1] (original) +++ trunk/reactos/subsystems/win32/csrsrv/CMakeLists.txt [iso-8859-1] Thu Jul 27 18:48:19 2017 @@ -21,7 +21,7 @@
set_module_type(csrsrv nativedll) target_link_libraries(csrsrv ${PSEH_LIB} smlib) -add_importlibs(csrsrv ntdll smdll) +add_importlibs(csrsrv smdll ntdll) add_pch(csrsrv srv.h SOURCE) add_dependencies(csrsrv psdk bugcodes) add_cd_file(TARGET csrsrv DESTINATION reactos/system32 FOR all)