Author: akhaldi
Date: Sat Oct 18 14:16:54 2014
New Revision: 64806

URL: http://svn.reactos.org/svn/reactos?rev=64806&view=rev
Log:
[BMFD]
* Use set_module_type() instead of the combination of set_entrypoint(), 
set_subsystem() and set_image_base().
* Remove the now redundant bugcodes dependency.
[FRAMEBUF_NEW]
* Remove redundant bugcodes dependency.

Modified:
    trunk/reactos/win32ss/drivers/displays/framebuf_new/CMakeLists.txt
    trunk/reactos/win32ss/drivers/font/bmfd/CMakeLists.txt

Modified: trunk/reactos/win32ss/drivers/displays/framebuf_new/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/drivers/displays/framebuf_new/CMakeLists.txt?rev=64806&r1=64805&r2=64806&view=diff
==============================================================================
--- trunk/reactos/win32ss/drivers/displays/framebuf_new/CMakeLists.txt  
[iso-8859-1] (original)
+++ trunk/reactos/win32ss/drivers/displays/framebuf_new/CMakeLists.txt  
[iso-8859-1] Sat Oct 18 14:16:54 2014
@@ -18,4 +18,4 @@
 target_link_libraries(framebuf_new libcntpr)
 add_importlibs(framebuf_new win32k)
 add_pch(framebuf_new driver.h SOURCE)
-add_dependencies(framebuf_new psdk bugcodes)
+add_dependencies(framebuf_new psdk)

Modified: trunk/reactos/win32ss/drivers/font/bmfd/CMakeLists.txt
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/drivers/font/bmfd/CMakeLists.txt?rev=64806&r1=64805&r2=64806&view=diff
==============================================================================
--- trunk/reactos/win32ss/drivers/font/bmfd/CMakeLists.txt      [iso-8859-1] 
(original)
+++ trunk/reactos/win32ss/drivers/font/bmfd/CMakeLists.txt      [iso-8859-1] 
Sat Oct 18 14:16:54 2014
@@ -6,10 +6,8 @@
     bmfd.h)
 
 add_library(bmfd SHARED ${SOURCE})
-set_entrypoint(bmfd BmfdEnableDriver 12)
-set_subsystem(bmfd native)
-set_image_base(bmfd 0x00010000)
+set_module_type(bmfd kerneldll ENTRYPOINT BmfdEnableDriver 12)
 target_link_libraries(bmfd libcntpr)
 add_importlibs(bmfd win32k)
 add_pch(bmfd bmfd.h SOURCE)
-add_dependencies(bmfd psdk bugcodes)
+add_dependencies(bmfd psdk)


Reply via email to