mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 20:18:22 +00:00
[MLANG]
- Fix entrypoint and add startup code to fix registration of mlang classes. Fixes crashes and failures in inetcomm:mimeintl winetest and adds back many tests in mlang winetest svn path=/trunk/; revision=56156
This commit is contained in:
parent
ea61322952
commit
70c79f936b
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,6 @@ add_definitions(-D_WIN32_WINNT=0x600)
|
||||||
|
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
set_rc_compiler()
|
|
||||||
spec2def(mlang.dll mlang.spec ADD_IMPORTLIB)
|
spec2def(mlang.dll mlang.spec ADD_IMPORTLIB)
|
||||||
|
|
||||||
list(APPEND SOURCE
|
list(APPEND SOURCE
|
||||||
|
@ -18,7 +17,7 @@ list(APPEND SOURCE
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/mlang.def)
|
${CMAKE_CURRENT_BINARY_DIR}/mlang.def)
|
||||||
|
|
||||||
add_library(mlang SHARED ${SOURCE})
|
add_library(mlang SHARED ${SOURCE})
|
||||||
set_module_type(mlang win32dll ENTRYPOINT 0)
|
set_module_type(mlang win32dll UNICODE)
|
||||||
target_link_libraries(mlang uuid wine)
|
target_link_libraries(mlang uuid wine)
|
||||||
add_delay_importlibs(mlang oleaut32)
|
add_delay_importlibs(mlang oleaut32)
|
||||||
|
|
||||||
|
@ -27,6 +26,7 @@ add_importlibs(mlang
|
||||||
user32
|
user32
|
||||||
gdi32
|
gdi32
|
||||||
advapi32
|
advapi32
|
||||||
|
msvcrt
|
||||||
kernel32
|
kernel32
|
||||||
ntdll)
|
ntdll)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue