Author: jgardou
Date: Tue Aug 2 06:11:12 2011
New Revision: 53025
URL:
http://svn.reactos.org/svn/reactos?rev=53025&view=rev
Log:
[CMAKE/GCC]
- fix entry point for native dlls
Modified:
trunk/reactos/cmake/gcc.cmake
Modified: trunk/reactos/cmake/gcc.cmake
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/cmake/gcc.cmake?rev=53025&…
==============================================================================
--- trunk/reactos/cmake/gcc.cmake [iso-8859-1] (original)
+++ trunk/reactos/cmake/gcc.cmake [iso-8859-1] Tue Aug 2 06:11:12 2011
@@ -165,6 +165,7 @@
add_dependencies(${MODULE} bugcodes)
elseif(${TYPE} MATCHES nativedll)
set_subsystem(${MODULE} native)
+ set_entrypoint(${MODULE} DllMain 12)
else()
message(FATAL_ERROR "Unknown module type : ${TYPE}")
endif()