reactos/dll/win32/comctl32/CMakeLists.txt
Mark Jansen 2587d72ef7 [WINSXS] Add some amd64 manifests
Co-authored-by: Timo Kreuzer <timo.kreuzer@reactos.org>
2021-04-08 20:48:24 +03:00

83 lines
2.2 KiB
CMake

add_definitions(
-D__WINESRC__
-D_WINE
-D__ROS_LONG64__
-D_COMCTL32_)
remove_definitions(-D_WIN32_WINNT=0x502 -DWINVER=0x502)
add_definitions(-D_WIN32_WINNT=0x600 -DWINVER=0x600)
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
spec2def(comctl32.dll comctl32.spec ADD_IMPORTLIB)
if(MSVC)
endif()
list(APPEND SOURCE
animate.c
button.c
combo.c
comboex.c
comctl32undoc.c
commctrl.c
datetime.c
dpa.c
draglist.c
dsa.c
edit.c
flatsb.c
header.c
hotkey.c
imagelist.c
ipaddress.c
listbox.c
listview.c
monthcal.c
nativefont.c
pager.c
progress.c
propsheet.c
rebar.c
smoothscroll.c
static.c
status.c
string.c
syslink.c
tab.c
taskdialog.c
theme_scrollbar.c
theming.c
toolbar.c
tooltips.c
trackbar.c
treeview.c
updown.c)
list(APPEND PCH_SKIP_SOURCE
stubs.c)
add_library(comctl32 MODULE
${SOURCE}
${PCH_SKIP_SOURCE}
rsrc.rc
${CMAKE_CURRENT_BINARY_DIR}/comctl32.def)
if(MSVC)
# Disable warning C4477 (printf format warnings)
remove_target_compile_option(comctl32 "/we4477")
endif()
set_module_type(comctl32 win32dll UNICODE)
target_link_libraries(comctl32 uuid wine ${PSEH_LIB})
add_delay_importlibs(comctl32 winmm uxtheme)
add_importlibs(comctl32 user32 gdi32 advapi32 usp10 imm32 msvcrt kernel32 ntdll)
add_pch(comctl32 precomp.h "${PCH_SKIP_SOURCE}")
add_cd_file(TARGET comctl32 DESTINATION reactos/system32 FOR all)
add_cd_file(TARGET comctl32 DESTINATION reactos/winsxs/${WINARCH}_microsoft.windows.common-controls_6595b64144ccf1df_5.82.2600.2982_none_deadbeef FOR all)
add_cd_file(TARGET comctl32 DESTINATION reactos/winsxs/${WINARCH}_microsoft.windows.common-controls_6595b64144ccf1df_6.0.2600.2982_none_deadbeef FOR all)
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/${WINARCH}_microsoft.windows.common-controls_6595b64144ccf1df_5.82.2600.2982_none_deadbeef.manifest DESTINATION reactos/winsxs/manifests FOR all)
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/${WINARCH}_microsoft.windows.common-controls_6595b64144ccf1df_6.0.2600.2982_none_deadbeef.manifest DESTINATION reactos/winsxs/manifests FOR all)