mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 21:42:57 +00:00
[CMAKE]
Stubs: Fix some win32 modules. svn path=/branches/cmake-bringup/; revision=49871
This commit is contained in:
parent
db7b8d8030
commit
e141d4c363
55 changed files with 250 additions and 75 deletions
|
@ -5,7 +5,11 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(activeds.dll activeds.spec)
|
spec2def(activeds.dll activeds.spec)
|
||||||
|
|
||||||
add_library(activeds SHARED activeds_main.c ${CMAKE_CURRENT_BINARY_DIR}/activeds.def)
|
list(APPEND SOURCE
|
||||||
|
activeds_main.c
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/activeds.def)
|
||||||
|
|
||||||
|
add_library(activeds SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(activeds win32dll)
|
set_module_type(activeds win32dll)
|
||||||
|
|
||||||
|
|
|
@ -2,18 +2,19 @@
|
||||||
add_definitions(-D__WINESRC__)
|
add_definitions(-D__WINESRC__)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(bcrypt.dll bcrypt.spec)
|
spec2def(bcrypt.dll bcrypt.spec)
|
||||||
|
|
||||||
add_library(bcrypt SHARED
|
list(APPEND SOURCE
|
||||||
bcrypt_main.c
|
bcrypt_main.c
|
||||||
version.rc
|
version.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/bcrypt.def)
|
${CMAKE_CURRENT_BINARY_DIR}/bcrypt.def)
|
||||||
|
|
||||||
|
add_library(bcrypt SHARED ${SOURCE})
|
||||||
set_module_type(bcrypt win32dll)
|
set_module_type(bcrypt win32dll)
|
||||||
|
|
||||||
target_link_libraries(bcrypt wine)
|
target_link_libraries(bcrypt wine)
|
||||||
|
|
||||||
add_importlibs(bcrypt msvcrt kernel32 ntdll)
|
add_importlibs(bcrypt msvcrt kernel32 ntdll)
|
||||||
|
|
||||||
|
|
||||||
add_cab_target(bcrypt 1)
|
add_cab_target(bcrypt 1)
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
set_unicode()
|
set_unicode()
|
||||||
set_cpp()
|
set_cpp()
|
||||||
|
|
||||||
|
@ -13,9 +12,10 @@ include_directories(
|
||||||
${REACTOS_SOURCE_DIR}/include/reactos/wine
|
${REACTOS_SOURCE_DIR}/include/reactos/wine
|
||||||
${REACTOS_SOURCE_DIR}/lib/atl)
|
${REACTOS_SOURCE_DIR}/lib/atl)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(browseui.dll browseui.spec)
|
spec2def(browseui.dll browseui.spec)
|
||||||
|
|
||||||
add_library(browseui SHARED
|
list(APPEND SOURCE
|
||||||
aclmulti.cpp
|
aclmulti.cpp
|
||||||
addressband.cpp
|
addressband.cpp
|
||||||
addresseditbox.cpp
|
addresseditbox.cpp
|
||||||
|
@ -38,6 +38,7 @@ add_library(browseui SHARED
|
||||||
browseui.rc
|
browseui.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/browseui.def)
|
${CMAKE_CURRENT_BINARY_DIR}/browseui.def)
|
||||||
|
|
||||||
|
add_library(browseui SHARED ${SOURCE})
|
||||||
set_module_type(browseui win32dll)
|
set_module_type(browseui win32dll)
|
||||||
|
|
||||||
target_link_libraries(browseui
|
target_link_libraries(browseui
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
|
|
||||||
spec2def(cfgmgr32.dll cfgmgr32.spec)
|
spec2def(cfgmgr32.dll cfgmgr32.spec)
|
||||||
|
|
||||||
add_library(cfgmgr32 SHARED cfgmgr32.rc ${CMAKE_CURRENT_BINARY_DIR}/cfgmgr32.def)
|
list(APPEND SOURCE
|
||||||
|
cfgmgr32.rc
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/cfgmgr32.def)
|
||||||
|
add_library(cfgmgr32 SHARED ${SOURCE})
|
||||||
|
|
||||||
set_entrypoint(cfgmgr32 0)
|
set_entrypoint(cfgmgr32 0)
|
||||||
|
add_importlibs(cfgmgr32 kernel32 ntdll)
|
||||||
add_dependencies(cfgmgr32 psdk buildno_header)
|
add_dependencies(cfgmgr32 psdk buildno_header)
|
||||||
add_cab_target(cfgmgr32 1)
|
add_cab_target(cfgmgr32 1)
|
||||||
|
|
|
@ -3,9 +3,14 @@ add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(clusapi.dll clusapi.spec)
|
spec2def(clusapi.dll clusapi.spec)
|
||||||
|
|
||||||
add_library(clusapi SHARED clusapi.c ${CMAKE_CURRENT_BINARY_DIR}/clusapi.def)
|
list(APPEND SOURCE
|
||||||
|
clusapi.c
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/clusapi.def)
|
||||||
|
|
||||||
|
add_library(clusapi SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(clusapi win32dll)
|
set_module_type(clusapi win32dll)
|
||||||
|
|
||||||
|
|
|
@ -4,9 +4,10 @@ add_definitions(-D_WINE)
|
||||||
add_definitions(-D_DLL -D__USE_CRTIMP)
|
add_definitions(-D_DLL -D__USE_CRTIMP)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(comdlg32.dll comdlg32.spec)
|
spec2def(comdlg32.dll comdlg32.spec)
|
||||||
|
|
||||||
add_library(comdlg32 SHARED
|
list(APPEND SOURCE
|
||||||
cdlg32.c
|
cdlg32.c
|
||||||
colordlg.c
|
colordlg.c
|
||||||
filedlg.c
|
filedlg.c
|
||||||
|
@ -18,6 +19,8 @@ add_library(comdlg32 SHARED
|
||||||
rsrc.rc
|
rsrc.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/comdlg32.def)
|
${CMAKE_CURRENT_BINARY_DIR}/comdlg32.def)
|
||||||
|
|
||||||
|
add_library(comdlg32 SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(comdlg32 win32dll)
|
set_module_type(comdlg32 win32dll)
|
||||||
|
|
||||||
target_link_libraries(comdlg32
|
target_link_libraries(comdlg32
|
||||||
|
|
|
@ -3,9 +3,15 @@ add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(credui.dll credui.spec)
|
spec2def(credui.dll credui.spec)
|
||||||
|
|
||||||
add_library(credui SHARED credui_main.c credui.rc ${CMAKE_CURRENT_BINARY_DIR}/credui.def)
|
list(APPEND SOURCE
|
||||||
|
credui_main.c
|
||||||
|
credui.rc
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/credui.def)
|
||||||
|
|
||||||
|
add_library(credui SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(credui win32dll)
|
set_module_type(credui win32dll)
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,10 @@ 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(crypt32.dll crypt32.spec)
|
spec2def(crypt32.dll crypt32.spec)
|
||||||
|
|
||||||
add_library(crypt32 SHARED
|
list(APPEND SOURCE
|
||||||
base64.c
|
base64.c
|
||||||
cert.c
|
cert.c
|
||||||
chain.c
|
chain.c
|
||||||
|
@ -41,6 +42,8 @@ add_library(crypt32 SHARED
|
||||||
version.rc
|
version.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/crypt32.def)
|
${CMAKE_CURRENT_BINARY_DIR}/crypt32.def)
|
||||||
|
|
||||||
|
add_library(crypt32 SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(crypt32 win32dll)
|
set_module_type(crypt32 win32dll)
|
||||||
|
|
||||||
target_link_libraries(crypt32
|
target_link_libraries(crypt32
|
||||||
|
|
|
@ -2,9 +2,15 @@
|
||||||
add_definitions(-D__WINESRC__)
|
add_definitions(-D__WINESRC__)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(cryptdlg.dll cryptdlg.spec)
|
spec2def(cryptdlg.dll cryptdlg.spec)
|
||||||
|
|
||||||
add_library(cryptdlg SHARED main.c cryptdlg.rc ${CMAKE_CURRENT_BINARY_DIR}/cryptdlg.def)
|
list(APPEND SOURCE
|
||||||
|
main.c
|
||||||
|
cryptdlg.rc
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/cryptdlg.def)
|
||||||
|
|
||||||
|
add_library(cryptdlg SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(cryptdlg win32dll)
|
set_module_type(cryptdlg win32dll)
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,11 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(cryptnet.dll cryptnet.spec)
|
spec2def(cryptnet.dll cryptnet.spec)
|
||||||
|
|
||||||
add_library(cryptnet SHARED cryptnet_main.c ${CMAKE_CURRENT_BINARY_DIR}/cryptnet.def)
|
list(APPEND SOURCE
|
||||||
|
cryptnet_main.c
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/cryptnet.def)
|
||||||
|
|
||||||
|
add_library(cryptnet SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(cryptnet win32dll)
|
set_module_type(cryptnet win32dll)
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,15 @@ add_definitions(-D__WINESRC__)
|
||||||
add_definitions(-D_WINE)
|
add_definitions(-D_WINE)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(cryptui.dll cryptui.spec)
|
spec2def(cryptui.dll cryptui.spec)
|
||||||
|
|
||||||
add_library(cryptui SHARED main.c cryptui.rc ${CMAKE_CURRENT_BINARY_DIR}/cryptui.def)
|
list(APPEND SOURCE
|
||||||
|
main.c
|
||||||
|
cryptui.rc
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/cryptui.def)
|
||||||
|
|
||||||
|
add_library(cryptui SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(cryptui win32dll)
|
set_module_type(cryptui win32dll)
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,14 @@ add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(dciman32.dll dciman32.spec)
|
spec2def(dciman32.dll dciman32.spec)
|
||||||
|
|
||||||
add_library(dciman32 SHARED dciman_main.c ${CMAKE_CURRENT_BINARY_DIR}/dciman32.def)
|
list(APPEND SOURCE
|
||||||
|
dciman_main.c
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/dciman32.def)
|
||||||
|
|
||||||
|
add_library(dciman32 SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(dciman32 win32dll)
|
set_module_type(dciman32 win32dll)
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,14 @@ add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(faultrep.dll faultrep.spec)
|
spec2def(faultrep.dll faultrep.spec)
|
||||||
|
|
||||||
add_library(faultrep SHARED faultrep.c ${CMAKE_CURRENT_BINARY_DIR}/faultrep.def)
|
list(APPEND SOURCE
|
||||||
|
faultrep.c
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/faultrep.def)
|
||||||
|
|
||||||
|
add_library(faultrep SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(faultrep win32dll)
|
set_module_type(faultrep win32dll)
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,10 @@ add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(fusion.dll fusion.spec)
|
spec2def(fusion.dll fusion.spec)
|
||||||
|
|
||||||
add_library(fusion SHARED
|
list(APPEND SOURCE
|
||||||
asmcache.c
|
asmcache.c
|
||||||
asmenum.c
|
asmenum.c
|
||||||
asmname.c
|
asmname.c
|
||||||
|
@ -14,6 +15,8 @@ add_library(fusion SHARED
|
||||||
fusion_main.c
|
fusion_main.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/fusion.def)
|
${CMAKE_CURRENT_BINARY_DIR}/fusion.def)
|
||||||
|
|
||||||
|
add_library(fusion SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(fusion win32dll)
|
set_module_type(fusion win32dll)
|
||||||
|
|
||||||
target_link_libraries(fusion wine)
|
target_link_libraries(fusion wine)
|
||||||
|
|
|
@ -3,9 +3,10 @@ add_definitions(-D__WINESRC__)
|
||||||
add_definitions(-D_DLL -D__USE_CRTIMP)
|
add_definitions(-D_DLL -D__USE_CRTIMP)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(gdiplus.dll gdiplus.spec)
|
spec2def(gdiplus.dll gdiplus.spec)
|
||||||
|
|
||||||
add_library(gdiplus SHARED
|
list(APPEND SOURCE
|
||||||
brush.c
|
brush.c
|
||||||
customlinecap.c
|
customlinecap.c
|
||||||
font.c
|
font.c
|
||||||
|
@ -21,6 +22,8 @@ add_library(gdiplus SHARED
|
||||||
stringformat.c
|
stringformat.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/gdiplus.def)
|
${CMAKE_CURRENT_BINARY_DIR}/gdiplus.def)
|
||||||
|
|
||||||
|
add_library(gdiplus SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(gdiplus win32dll)
|
set_module_type(gdiplus win32dll)
|
||||||
|
|
||||||
target_link_libraries(gdiplus
|
target_link_libraries(gdiplus
|
||||||
|
|
|
@ -4,13 +4,15 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(hlink.dll hlink.spec)
|
spec2def(hlink.dll hlink.spec)
|
||||||
|
|
||||||
add_library(hlink SHARED
|
list(APPEND SOURCE
|
||||||
browse_ctx.c
|
browse_ctx.c
|
||||||
extserv.c
|
extserv.c
|
||||||
hlink_main.c
|
hlink_main.c
|
||||||
link.c
|
link.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/hlink.def)
|
${CMAKE_CURRENT_BINARY_DIR}/hlink.def)
|
||||||
|
|
||||||
|
add_library(hlink SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(hlink win32dll)
|
set_module_type(hlink win32dll)
|
||||||
|
|
||||||
target_link_libraries(hlink
|
target_link_libraries(hlink
|
||||||
|
|
|
@ -5,7 +5,11 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(httpapi.dll httpapi.spec)
|
spec2def(httpapi.dll httpapi.spec)
|
||||||
|
|
||||||
add_library(httpapi SHARED httpapi_main.c ${CMAKE_CURRENT_BINARY_DIR}/httpapi.def)
|
list(APPEND SOURCE
|
||||||
|
httpapi_main.c
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/httpapi.def)
|
||||||
|
|
||||||
|
add_library(httpapi SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(httpapi win32dll)
|
set_module_type(httpapi win32dll)
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,15 @@
|
||||||
|
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(icmp.dll icmp.spec)
|
spec2def(icmp.dll icmp.spec)
|
||||||
|
|
||||||
add_library(icmp SHARED icmp_main.c icmp.rc ${CMAKE_CURRENT_BINARY_DIR}/icmp.def)
|
list(APPEND SOURCE
|
||||||
|
icmp_main.c
|
||||||
|
icmp.rc
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/icmp.def)
|
||||||
|
|
||||||
|
add_library(icmp SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(icmp win32dll)
|
set_module_type(icmp win32dll)
|
||||||
|
|
||||||
|
|
|
@ -6,9 +6,15 @@ 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(imm32.dll imm32.spec)
|
spec2def(imm32.dll imm32.spec)
|
||||||
|
|
||||||
add_library(imm32 SHARED imm.c version.rc ${CMAKE_CURRENT_BINARY_DIR}/imm32.def)
|
list(APPEND SOURCE
|
||||||
|
imm.c
|
||||||
|
version.rc
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/imm32.def)
|
||||||
|
|
||||||
|
add_library(imm32 SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(imm32 win32dll)
|
set_module_type(imm32 win32dll)
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(inetcomm.dll inetcomm.spec)
|
spec2def(inetcomm.dll inetcomm.spec)
|
||||||
|
|
||||||
add_library(inetcomm SHARED
|
list(APPEND SOURCE
|
||||||
imaptransport.c
|
imaptransport.c
|
||||||
inetcomm_main.c
|
inetcomm_main.c
|
||||||
internettransport.c
|
internettransport.c
|
||||||
|
@ -17,6 +17,8 @@ add_library(inetcomm SHARED
|
||||||
smtptransport.c
|
smtptransport.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/inetcomm.def)
|
${CMAKE_CURRENT_BINARY_DIR}/inetcomm.def)
|
||||||
|
|
||||||
|
add_library(inetcomm SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(inetcomm win32dll)
|
set_module_type(inetcomm win32dll)
|
||||||
|
|
||||||
target_link_libraries(inetcomm
|
target_link_libraries(inetcomm
|
||||||
|
@ -33,5 +35,4 @@ add_importlibs(inetcomm
|
||||||
kernel32
|
kernel32
|
||||||
ntdll)
|
ntdll)
|
||||||
|
|
||||||
|
|
||||||
add_cab_target(inetcomm 1)
|
add_cab_target(inetcomm 1)
|
||||||
|
|
|
@ -5,7 +5,11 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(inetmib1.dll inetmib1.spec)
|
spec2def(inetmib1.dll inetmib1.spec)
|
||||||
|
|
||||||
add_library(inetmib1 SHARED main.c ${CMAKE_CURRENT_BINARY_DIR}/inetmib1.def)
|
list(APPEND SOURCE
|
||||||
|
main.c
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/inetmib1.def)
|
||||||
|
|
||||||
|
add_library(inetmib1 SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(inetmib1 win32dll)
|
set_module_type(inetmib1 win32dll)
|
||||||
|
|
||||||
|
@ -18,5 +22,4 @@ add_importlibs(inetmib1
|
||||||
kernel32
|
kernel32
|
||||||
ntdll)
|
ntdll)
|
||||||
|
|
||||||
|
|
||||||
add_cab_target(inetmib1 1)
|
add_cab_target(inetmib1 1)
|
||||||
|
|
|
@ -4,7 +4,11 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(initpki.dll initpki.spec)
|
spec2def(initpki.dll initpki.spec)
|
||||||
|
|
||||||
add_library(initpki SHARED main.c ${CMAKE_CURRENT_BINARY_DIR}/initpki.def)
|
list(APPEND SOURCE
|
||||||
|
main.c
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/initpki.def)
|
||||||
|
|
||||||
|
add_library(initpki SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(initpki win32dll)
|
set_module_type(initpki win32dll)
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,12 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(inseng.dll inseng.spec)
|
spec2def(inseng.dll inseng.spec)
|
||||||
|
|
||||||
add_library(inseng SHARED inseng_main.c regsvr.c ${CMAKE_CURRENT_BINARY_DIR}/inseng.def)
|
list(APPEND SOURCE
|
||||||
|
inseng_main.c
|
||||||
|
regsvr.c
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/inseng.def)
|
||||||
|
|
||||||
|
add_library(inseng SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(inseng win32dll)
|
set_module_type(inseng win32dll)
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,11 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(itircl.dll itircl.spec)
|
spec2def(itircl.dll itircl.spec)
|
||||||
|
|
||||||
add_library(itircl SHARED itircl_main.c ${CMAKE_CURRENT_BINARY_DIR}/itircl.def)
|
list(APPEND SOURCE
|
||||||
|
itircl_main.c
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/itircl.def)
|
||||||
|
|
||||||
|
add_library(itircl SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(itircl win32dll)
|
set_module_type(itircl win32dll)
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,10 @@
|
||||||
add_definitions(-D__WINESRC__ -D_DLL -D__USE_CRTIMP)
|
add_definitions(-D__WINESRC__ -D_DLL -D__USE_CRTIMP)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(itss.dll itss.spec)
|
spec2def(itss.dll itss.spec)
|
||||||
|
|
||||||
add_library(itss SHARED
|
list(APPEND SOURCE
|
||||||
chm_lib.c
|
chm_lib.c
|
||||||
lzx.c
|
lzx.c
|
||||||
itss.c
|
itss.c
|
||||||
|
@ -14,6 +15,8 @@ add_library(itss SHARED
|
||||||
rsrc.rc
|
rsrc.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/itss.def)
|
${CMAKE_CURRENT_BINARY_DIR}/itss.def)
|
||||||
|
|
||||||
|
add_library(itss SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(itss win32dll)
|
set_module_type(itss win32dll)
|
||||||
|
|
||||||
target_link_libraries(itss
|
target_link_libraries(itss
|
||||||
|
|
|
@ -4,15 +4,18 @@ remove_definitions(-D_WIN32_WINNT=0x502)
|
||||||
add_definitions(-D_WIN32_WINNT=0x600)
|
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(localspl.dll localspl.spec)
|
spec2def(localspl.dll localspl.spec)
|
||||||
|
|
||||||
add_library(localspl SHARED
|
list(APPEND SOURCE
|
||||||
localmon.c
|
localmon.c
|
||||||
localspl_main.c
|
localspl_main.c
|
||||||
provider.c
|
provider.c
|
||||||
localspl.rc
|
localspl.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/localspl.def)
|
${CMAKE_CURRENT_BINARY_DIR}/localspl.def)
|
||||||
|
|
||||||
|
add_library(localspl SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(localspl win32dll)
|
set_module_type(localspl win32dll)
|
||||||
|
|
||||||
target_link_libraries(localspl
|
target_link_libraries(localspl
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
|
|
||||||
set_unicode()
|
set_unicode()
|
||||||
|
|
||||||
include_directories(${REACTOS_BINARY_DIR}/include/reactos/idl)
|
include_directories(${REACTOS_BINARY_DIR}/include/reactos/idl)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/subsys/lsass)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/subsys/lsass)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(lsasrv.dll lsasrv.spec)
|
spec2def(lsasrv.dll lsasrv.spec)
|
||||||
|
|
||||||
add_library(lsasrv SHARED
|
list(APPEND SOURCE
|
||||||
authport.c
|
authport.c
|
||||||
lsarpc.c
|
lsarpc.c
|
||||||
lsasrv.c
|
lsasrv.c
|
||||||
|
@ -15,6 +15,8 @@ add_library(lsasrv SHARED
|
||||||
lsasrv.rc
|
lsasrv.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/lsasrv.def)
|
${CMAKE_CURRENT_BINARY_DIR}/lsasrv.def)
|
||||||
|
|
||||||
|
add_library(lsasrv SHARED ${SOURCE})
|
||||||
|
|
||||||
set_entrypoint(lsasrv 0)
|
set_entrypoint(lsasrv 0)
|
||||||
|
|
||||||
target_link_libraries(lsasrv
|
target_link_libraries(lsasrv
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
|
|
||||||
add_definitions(-D__WINESRC__)
|
add_definitions(-D__WINESRC__)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(mapi32.dll mapi32.spec)
|
spec2def(mapi32.dll mapi32.spec)
|
||||||
|
|
||||||
add_library(mapi32 SHARED
|
list(APPEND SOURCE
|
||||||
imalloc.c
|
imalloc.c
|
||||||
mapi32_main.c
|
mapi32_main.c
|
||||||
prop.c
|
prop.c
|
||||||
|
@ -13,6 +13,8 @@ add_library(mapi32 SHARED
|
||||||
version.rc
|
version.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/mapi32.def)
|
${CMAKE_CURRENT_BINARY_DIR}/mapi32.def)
|
||||||
|
|
||||||
|
add_library(mapi32 SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(mapi32 win32dll)
|
set_module_type(mapi32 win32dll)
|
||||||
|
|
||||||
target_link_libraries(mapi32
|
target_link_libraries(mapi32
|
||||||
|
|
|
@ -6,9 +6,13 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(mlang.dll mlang.spec)
|
spec2def(mlang.dll mlang.spec)
|
||||||
|
|
||||||
add_library(mlang SHARED mlang.c regsvr.c
|
list(APPEND SOURCE
|
||||||
|
mlang.c
|
||||||
|
regsvr.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/mlang.def)
|
${CMAKE_CURRENT_BINARY_DIR}/mlang.def)
|
||||||
|
|
||||||
|
add_library(mlang SHARED ${SOURCE})
|
||||||
|
|
||||||
set_entrypoint(mlang 0)
|
set_entrypoint(mlang 0)
|
||||||
|
|
||||||
target_link_libraries(mlang
|
target_link_libraries(mlang
|
||||||
|
|
|
@ -3,10 +3,15 @@ set_unicode()
|
||||||
|
|
||||||
spec2def(modemui.dll modemui.spec)
|
spec2def(modemui.dll modemui.spec)
|
||||||
|
|
||||||
add_library(modemui SHARED modemui.c modemui.rc ${CMAKE_CURRENT_BINARY_DIR}/modemui.def)
|
list(APPEND SOURCE
|
||||||
|
modemui.c
|
||||||
|
modemui.rc
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/modemui.def)
|
||||||
|
|
||||||
|
add_library(modemui SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(modemui win32dll)
|
set_module_type(modemui win32dll)
|
||||||
|
|
||||||
add_importlibs(modemui msvcrt kernel32)
|
add_importlibs(modemui msvcrt kernel32 ntdll)
|
||||||
|
|
||||||
add_cab_target(modemui 1)
|
add_cab_target(modemui 1)
|
||||||
|
|
|
@ -4,7 +4,11 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(mprapi.dll mprapi.spec)
|
spec2def(mprapi.dll mprapi.spec)
|
||||||
|
|
||||||
add_library(mprapi SHARED mprapi.c ${CMAKE_CURRENT_BINARY_DIR}/mprapi.def)
|
list(APPEND SOURCE
|
||||||
|
mprapi.c
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/mprapi.def)
|
||||||
|
|
||||||
|
add_library(mprapi SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(mprapi win32dll)
|
set_module_type(mprapi win32dll)
|
||||||
|
|
||||||
|
|
|
@ -4,9 +4,10 @@ set_unicode()
|
||||||
add_definitions(-D_DLL -D__USE_CRTIMP)
|
add_definitions(-D_DLL -D__USE_CRTIMP)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(msacm32.dll msacm32.spec)
|
spec2def(msacm32.dll msacm32.spec)
|
||||||
|
|
||||||
add_library(msacm32 SHARED
|
list(APPEND SOURCE
|
||||||
driver.c
|
driver.c
|
||||||
filter.c
|
filter.c
|
||||||
format.c
|
format.c
|
||||||
|
@ -16,13 +17,14 @@ add_library(msacm32 SHARED
|
||||||
stream.c
|
stream.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/msacm32.def)
|
${CMAKE_CURRENT_BINARY_DIR}/msacm32.def)
|
||||||
|
|
||||||
|
add_library(msacm32 SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(msacm32 win32dll)
|
set_module_type(msacm32 win32dll)
|
||||||
|
|
||||||
target_link_libraries(msacm32 wine)
|
target_link_libraries(msacm32 wine)
|
||||||
|
|
||||||
add_importlibs(msacm32 msvcrt advapi32 user32 winmm kernel32 ntdll)
|
add_importlibs(msacm32 msvcrt advapi32 user32 winmm kernel32 ntdll)
|
||||||
|
|
||||||
|
|
||||||
add_subdirectory(msacm32.drv)
|
add_subdirectory(msacm32.drv)
|
||||||
add_cab_target(msacm32 1)
|
add_cab_target(msacm32 1)
|
||||||
add_importlib_target(msacm32.spec)
|
add_importlib_target(msacm32.spec)
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
|
|
||||||
add_definitions(-D__WINESRC__)
|
add_definitions(-D__WINESRC__)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(mscms.dll mscms.spec)
|
spec2def(mscms.dll mscms.spec)
|
||||||
|
|
||||||
add_library(mscms SHARED
|
list(APPEND SOURCE
|
||||||
handle.c
|
handle.c
|
||||||
icc.c
|
icc.c
|
||||||
mscms_main.c
|
mscms_main.c
|
||||||
|
@ -14,6 +14,8 @@ add_library(mscms SHARED
|
||||||
version.rc
|
version.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/mscms.def)
|
${CMAKE_CURRENT_BINARY_DIR}/mscms.def)
|
||||||
|
|
||||||
|
add_library(mscms SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(mscms win32dll)
|
set_module_type(mscms win32dll)
|
||||||
|
|
||||||
target_link_libraries(mscms wine)
|
target_link_libraries(mscms wine)
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
|
|
||||||
add_definitions(-D__WINESRC__)
|
add_definitions(-D__WINESRC__)
|
||||||
remove_definitions(-D_WIN32_WINNT=0x502)
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
||||||
add_definitions(-D_WIN32_WINNT=0x600)
|
add_definitions(-D_WIN32_WINNT=0x600)
|
||||||
add_definitions(-D_DLL -D__USE_CRTIMP)
|
add_definitions(-D_DLL -D__USE_CRTIMP)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(msctf.dll msctf.spec)
|
spec2def(msctf.dll msctf.spec)
|
||||||
|
|
||||||
add_library(msctf SHARED
|
list(APPEND SOURCE
|
||||||
categorymgr.c
|
categorymgr.c
|
||||||
compartmentmgr.c
|
compartmentmgr.c
|
||||||
context.c
|
context.c
|
||||||
|
@ -22,6 +22,8 @@ add_library(msctf SHARED
|
||||||
version.rc
|
version.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/msctf.def)
|
${CMAKE_CURRENT_BINARY_DIR}/msctf.def)
|
||||||
|
|
||||||
|
add_library(msctf SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(msctf win32dll)
|
set_module_type(msctf win32dll)
|
||||||
|
|
||||||
target_link_libraries(msctf
|
target_link_libraries(msctf
|
||||||
|
|
|
@ -1,14 +1,16 @@
|
||||||
|
|
||||||
add_definitions(-D__WINESRC__)
|
add_definitions(-D__WINESRC__)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(msftedit.dll msftedit.spec)
|
spec2def(msftedit.dll msftedit.spec)
|
||||||
|
|
||||||
add_library(msftedit SHARED
|
list(APPEND SOURCE
|
||||||
msftedit_main.c
|
msftedit_main.c
|
||||||
version.rc
|
version.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/msftedit.def)
|
${CMAKE_CURRENT_BINARY_DIR}/msftedit.def)
|
||||||
|
|
||||||
|
add_library(msftedit SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(msftedit win32dll)
|
set_module_type(msftedit win32dll)
|
||||||
|
|
||||||
target_link_libraries(msftedit
|
target_link_libraries(msftedit
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
|
|
||||||
include_directories(include)
|
include_directories(include)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(msgina.dll msgina.spec)
|
spec2def(msgina.dll msgina.spec)
|
||||||
|
|
||||||
add_library(msgina SHARED
|
list(APPEND SOURCE
|
||||||
gui.c
|
gui.c
|
||||||
msgina.c
|
msgina.c
|
||||||
stubs.c
|
stubs.c
|
||||||
|
@ -12,6 +12,8 @@ add_library(msgina SHARED
|
||||||
msgina.rc
|
msgina.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/msgina.def)
|
${CMAKE_CURRENT_BINARY_DIR}/msgina.def)
|
||||||
|
|
||||||
|
add_library(msgina SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(msgina win32dll)
|
set_module_type(msgina win32dll)
|
||||||
|
|
||||||
target_link_libraries(msgina wine)
|
target_link_libraries(msgina wine)
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
|
|
||||||
ADD_INTERFACE_DEFINITIONS(mshtml_nsiface_header nsiface.idl)
|
|
||||||
|
|
||||||
remove_definitions(-D_WIN32_WINNT=0x502)
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
||||||
add_definitions(-D_WIN32_WINNT=0x600)
|
add_definitions(-D_WIN32_WINNT=0x600)
|
||||||
|
|
||||||
|
@ -11,9 +9,12 @@ add_definitions(
|
||||||
|
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
ADD_INTERFACE_DEFINITIONS(mshtml_nsiface_header nsiface.idl)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(mshtml.dll mshtml.spec)
|
spec2def(mshtml.dll mshtml.spec)
|
||||||
|
|
||||||
add_library(mshtml SHARED
|
list(APPEND SOURCE
|
||||||
conpoint.c
|
conpoint.c
|
||||||
dispex.c
|
dispex.c
|
||||||
editor.c
|
editor.c
|
||||||
|
@ -78,6 +79,8 @@ add_library(mshtml SHARED
|
||||||
rsrc.rc
|
rsrc.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/mshtml.def)
|
${CMAKE_CURRENT_BINARY_DIR}/mshtml.def)
|
||||||
|
|
||||||
|
add_library(mshtml SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(mshtml win32dll)
|
set_module_type(mshtml win32dll)
|
||||||
|
|
||||||
target_link_libraries(mshtml
|
target_link_libraries(mshtml
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
|
|
||||||
add_definitions(-D__WINESRC__)
|
add_definitions(-D__WINESRC__)
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(msimtf.dll msimtf.spec)
|
spec2def(msimtf.dll msimtf.spec)
|
||||||
|
|
||||||
add_library(msimtf SHARED
|
list(APPEND SOURCE
|
||||||
activeimmapp.c
|
activeimmapp.c
|
||||||
main.c
|
main.c
|
||||||
rsrc.rc
|
rsrc.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/msimtf.def)
|
${CMAKE_CURRENT_BINARY_DIR}/msimtf.def)
|
||||||
|
|
||||||
|
add_library(msimtf SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(msimtf win32dll)
|
set_module_type(msimtf win32dll)
|
||||||
|
|
||||||
target_link_libraries(msimtf
|
target_link_libraries(msimtf
|
||||||
|
|
|
@ -4,7 +4,11 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(msisip.dll msisip.spec)
|
spec2def(msisip.dll msisip.spec)
|
||||||
|
|
||||||
add_library(msisip SHARED main.c ${CMAKE_CURRENT_BINARY_DIR}/msisip.def)
|
list(APPEND SOURCE
|
||||||
|
main.c
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/msisip.def)
|
||||||
|
|
||||||
|
add_library(msisip SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(msisip win32dll)
|
set_module_type(msisip win32dll)
|
||||||
|
|
||||||
|
|
|
@ -6,9 +6,11 @@ add_definitions(-DCRTDLL)
|
||||||
|
|
||||||
spec2def(msvcrt20.dll msvcrt20.spec)
|
spec2def(msvcrt20.dll msvcrt20.spec)
|
||||||
|
|
||||||
add_library(msvcrt20 SHARED msvcrt20.c
|
list(APPEND SOURCE
|
||||||
|
msvcrt20.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/msvcrt20.def)
|
${CMAKE_CURRENT_BINARY_DIR}/msvcrt20.def)
|
||||||
|
|
||||||
|
add_library(msvcrt20 SHARED ${SOURCE})
|
||||||
set_entrypoint(msvcrt20 0)
|
set_entrypoint(msvcrt20 0)
|
||||||
|
|
||||||
target_link_libraries(msvcrt20 wine)
|
target_link_libraries(msvcrt20 wine)
|
||||||
|
|
|
@ -4,9 +4,11 @@ add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
spec2def(nddeapi.dll nddeapi.spec)
|
spec2def(nddeapi.dll nddeapi.spec)
|
||||||
|
|
||||||
add_library(nddeapi SHARED nddeapi.c
|
list(APPEND SOURCE
|
||||||
|
nddeapi.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/nddeapi.def)
|
${CMAKE_CURRENT_BINARY_DIR}/nddeapi.def)
|
||||||
|
|
||||||
|
add_library(nddeapi SHARED ${SOURCE})
|
||||||
set_entrypoint(nddeapi 0)
|
set_entrypoint(nddeapi 0)
|
||||||
|
|
||||||
target_link_libraries(nddeapi wine)
|
target_link_libraries(nddeapi wine)
|
||||||
|
|
|
@ -4,9 +4,11 @@ add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
spec2def(ntdsapi.dll ntdsapi.spec)
|
spec2def(ntdsapi.dll ntdsapi.spec)
|
||||||
|
|
||||||
add_library(ntdsapi SHARED ntdsapi.c
|
list(APPEND SOURCE
|
||||||
|
ntdsapi.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/ntdsapi.def)
|
${CMAKE_CURRENT_BINARY_DIR}/ntdsapi.def)
|
||||||
|
|
||||||
|
add_library(ntdsapi SHARED ${SOURCE})
|
||||||
set_entrypoint(ntdsapi 0)
|
set_entrypoint(ntdsapi 0)
|
||||||
|
|
||||||
target_link_libraries(ntdsapi wine)
|
target_link_libraries(ntdsapi wine)
|
||||||
|
|
|
@ -6,9 +6,11 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(odbccp32.dll odbccp32.spec)
|
spec2def(odbccp32.dll odbccp32.spec)
|
||||||
|
|
||||||
add_library(odbccp32 SHARED odbccp32.c
|
list(APPEND SOURCE
|
||||||
|
odbccp32.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/odbccp32.def)
|
${CMAKE_CURRENT_BINARY_DIR}/odbccp32.def)
|
||||||
|
|
||||||
|
add_library(odbccp32 SHARED ${SOURCE})
|
||||||
set_entrypoint(odbccp32 0)
|
set_entrypoint(odbccp32 0)
|
||||||
|
|
||||||
target_link_libraries(odbccp32
|
target_link_libraries(odbccp32
|
||||||
|
|
|
@ -1,13 +1,16 @@
|
||||||
|
|
||||||
add_definitions(-D__WINESRC__)
|
add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(oleacc.dll oleacc.spec)
|
spec2def(oleacc.dll oleacc.spec)
|
||||||
|
|
||||||
add_library(oleacc SHARED main.c oleacc.rc
|
list(APPEND SOURCE
|
||||||
|
main.c oleacc.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/oleacc.def)
|
${CMAKE_CURRENT_BINARY_DIR}/oleacc.def)
|
||||||
|
|
||||||
|
add_library(oleacc SHARED ${SOURCE})
|
||||||
|
|
||||||
set_entrypoint(oleacc 0)
|
set_entrypoint(oleacc 0)
|
||||||
|
|
||||||
target_link_libraries(oleacc wine)
|
target_link_libraries(oleacc wine)
|
||||||
|
|
|
@ -2,11 +2,14 @@
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
add_definitions(-D__WINESRC__)
|
add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(olecli32.dll olecli32.spec)
|
spec2def(olecli32.dll olecli32.spec)
|
||||||
|
|
||||||
add_library(olecli32 SHARED olecli_main.c
|
list(APPEND SOURCE
|
||||||
|
olecli_main.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/olecli32.def)
|
${CMAKE_CURRENT_BINARY_DIR}/olecli32.def)
|
||||||
|
|
||||||
|
add_library(olecli32 SHARED ${SOURCE})
|
||||||
set_entrypoint(olecli32 0)
|
set_entrypoint(olecli32 0)
|
||||||
|
|
||||||
target_link_libraries(olecli32 wine)
|
target_link_libraries(olecli32 wine)
|
||||||
|
|
|
@ -8,9 +8,11 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
spec2def(pdh.dll pdh.spec)
|
spec2def(pdh.dll pdh.spec)
|
||||||
|
|
||||||
add_library(pdh SHARED pdh_main.c
|
list(APPEND SOURCE
|
||||||
|
pdh_main.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/pdh.def)
|
${CMAKE_CURRENT_BINARY_DIR}/pdh.def)
|
||||||
|
|
||||||
|
add_library(pdh SHARED ${SOURCE})
|
||||||
set_entrypoint(pdh 0)
|
set_entrypoint(pdh 0)
|
||||||
|
|
||||||
target_link_libraries(pdh wine)
|
target_link_libraries(pdh wine)
|
||||||
|
|
|
@ -2,11 +2,14 @@
|
||||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
add_definitions(-D__WINESRC__)
|
add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(rasapi32.dll rasapi32.spec)
|
spec2def(rasapi32.dll rasapi32.spec)
|
||||||
|
|
||||||
add_library(rasapi32 SHARED rasapi.c
|
list(APPEND SOURCE
|
||||||
|
rasapi.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/rasapi32.def)
|
${CMAKE_CURRENT_BINARY_DIR}/rasapi32.def)
|
||||||
|
|
||||||
|
add_library(rasapi32 SHARED ${SOURCE})
|
||||||
set_entrypoint(rasapi32 0)
|
set_entrypoint(rasapi32 0)
|
||||||
|
|
||||||
target_link_libraries(rasapi32 wine)
|
target_link_libraries(rasapi32 wine)
|
||||||
|
|
|
@ -1,15 +1,16 @@
|
||||||
|
|
||||||
set_unicode()
|
set_unicode()
|
||||||
|
|
||||||
add_definitions(-D__SECURITY__)
|
add_definitions(-D__SECURITY__)
|
||||||
|
|
||||||
|
set_rc_compiler()
|
||||||
spec2def(security.dll security.spec)
|
spec2def(security.dll security.spec)
|
||||||
|
|
||||||
add_library(security SHARED security.rc
|
list(APPEND SOURCE
|
||||||
|
security.rc
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/security.def)
|
${CMAKE_CURRENT_BINARY_DIR}/security.def)
|
||||||
|
|
||||||
|
add_library(security SHARED ${SOURCE})
|
||||||
set_entrypoint(security 0)
|
set_entrypoint(security 0)
|
||||||
|
|
||||||
add_importlibs(security advapi32 ntdll)
|
add_importlibs(security advapi32 ntdll kernel32)
|
||||||
|
|
||||||
add_cab_target(security 1)
|
add_cab_target(security 1)
|
|
@ -4,10 +4,16 @@ include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||||
|
|
||||||
remove_definitions(-D_WIN32_WINNT=0x502)
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
||||||
add_definitions(-D_WIN32_WINNT=0x600)
|
add_definitions(-D_WIN32_WINNT=0x600)
|
||||||
|
set_rc_compiler()
|
||||||
|
|
||||||
spec2def(snmpapi.dll snmpapi.spec)
|
spec2def(snmpapi.dll snmpapi.spec)
|
||||||
|
|
||||||
add_library(snmpapi SHARED main.c snmpapi.rc ${CMAKE_CURRENT_BINARY_DIR}/snmpapi.def)
|
list(APPEND SOURCE
|
||||||
|
main.c
|
||||||
|
snmpapi.rc
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/snmpapi.def)
|
||||||
|
|
||||||
|
add_library(snmpapi SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(snmpapi win32dll)
|
set_module_type(snmpapi win32dll)
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,12 @@ add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
spec2def(spoolss.dll spoolss.spec)
|
spec2def(spoolss.dll spoolss.spec)
|
||||||
|
|
||||||
add_library(spoolss SHARED spoolss_main.c router.c ${CMAKE_CURRENT_BINARY_DIR}/spoolss.def)
|
list(APPEND SOURCE
|
||||||
|
spoolss_main.c
|
||||||
|
router.c
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/spoolss.def)
|
||||||
|
|
||||||
|
add_library(spoolss SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(spoolss win32dll)
|
set_module_type(spoolss win32dll)
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
|
|
||||||
spec2def(srclient.dll srclient.spec)
|
spec2def(srclient.dll srclient.spec)
|
||||||
|
|
||||||
add_library(srclient SHARED srclient_main.c
|
list(APPEND SOURCE
|
||||||
|
srclient_main.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/srclient.def)
|
${CMAKE_CURRENT_BINARY_DIR}/srclient.def)
|
||||||
|
|
||||||
|
add_library(srclient SHARED ${SOURCE})
|
||||||
set_entrypoint(srclient 0)
|
set_entrypoint(srclient 0)
|
||||||
|
|
||||||
add_importlibs(srclient kernel32 ntdll)
|
add_importlibs(srclient kernel32 ntdll)
|
||||||
|
|
|
@ -4,9 +4,11 @@ add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
spec2def(sxs.dll sxs.spec)
|
spec2def(sxs.dll sxs.spec)
|
||||||
|
|
||||||
add_library(sxs SHARED sxs.c
|
list(APPEND SOURCE
|
||||||
|
sxs.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/sxs.def)
|
${CMAKE_CURRENT_BINARY_DIR}/sxs.def)
|
||||||
|
|
||||||
|
add_library(sxs SHARED ${SOURCE})
|
||||||
set_entrypoint(sxs 0)
|
set_entrypoint(sxs 0)
|
||||||
|
|
||||||
target_link_libraries(sxs wine)
|
target_link_libraries(sxs wine)
|
||||||
|
|
|
@ -4,12 +4,13 @@ add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
spec2def(tapi32.dll tapi32.spec)
|
spec2def(tapi32.dll tapi32.spec)
|
||||||
|
|
||||||
add_library(tapi32 SHARED
|
list(APPEND SOURCE
|
||||||
assisted.c
|
assisted.c
|
||||||
internal.c
|
internal.c
|
||||||
line.c
|
line.c
|
||||||
phone.c
|
phone.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/tapi32.def)
|
${CMAKE_CURRENT_BINARY_DIR}/tapi32.def)
|
||||||
|
add_library(tapi32 SHARED ${SOURCE})
|
||||||
|
|
||||||
set_entrypoint(tapi32 0)
|
set_entrypoint(tapi32 0)
|
||||||
|
|
||||||
|
|
|
@ -4,10 +4,12 @@ add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
spec2def(traffic.dll traffic.spec)
|
spec2def(traffic.dll traffic.spec)
|
||||||
|
|
||||||
add_library(traffic SHARED
|
list(APPEND SOURCE
|
||||||
traffic_main.c
|
traffic_main.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/traffic.def)
|
${CMAKE_CURRENT_BINARY_DIR}/traffic.def)
|
||||||
|
|
||||||
|
add_library(traffic SHARED ${SOURCE})
|
||||||
|
|
||||||
set_module_type(traffic win32dll)
|
set_module_type(traffic win32dll)
|
||||||
|
|
||||||
target_link_libraries(traffic wine)
|
target_link_libraries(traffic wine)
|
||||||
|
|
|
@ -4,9 +4,11 @@ add_definitions(-D__WINESRC__)
|
||||||
|
|
||||||
spec2def(updspapi.dll updspapi.spec)
|
spec2def(updspapi.dll updspapi.spec)
|
||||||
|
|
||||||
add_library(updspapi SHARED main.c
|
list(APPEND SOURCE
|
||||||
|
main.c
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/updspapi.def)
|
${CMAKE_CURRENT_BINARY_DIR}/updspapi.def)
|
||||||
|
|
||||||
|
add_library(updspapi SHARED ${SOURCE})
|
||||||
set_entrypoint(updspapi 0)
|
set_entrypoint(updspapi 0)
|
||||||
|
|
||||||
target_link_libraries(updspapi wine)
|
target_link_libraries(updspapi wine)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue