reactos/dll/win32/comctl32/CMakeLists.txt
Amine Khaldi b02b04fc53 [CMAKE]
- More work on the dlls. By Alexey Komarov.

svn path=/branches/cmake-bringup/; revision=49105
2010-10-10 22:58:42 +00:00

69 lines
1.2 KiB
CMake

set_unicode()
add_definitions(-D__WINESRC__)
add_definitions(-D_WINE)
add_definitions(-D_COMCTL32_)
remove_definitions(-D_WIN32_WINNT=0x502)
add_definitions(-D_WIN32_WINNT=0x600)
add_definitions(-D_DLL -D__USE_CRTIMP)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
spec2def(comctl32 ${CMAKE_CURRENT_SOURCE_DIR}/comctl32.spec ${CMAKE_CURRENT_BINARY_DIR}/comctl32.def)
add_library(comctl32 SHARED
animate.c
comboex.c
comctl32undoc.c
commctrl.c
datetime.c
dpa.c
draglist.c
dsa.c
flatsb.c
header.c
hotkey.c
imagelist.c
ipaddress.c
listview.c
monthcal.c
nativefont.c
pager.c
progress.c
propsheet.c
rebar.c
smoothscroll.c
status.c
string.c
syslink.c
tab.c
theme_button.c
theme_combo.c
theme_dialog.c
theme_edit.c
theme_listbox.c
theming.c
toolbar.c
tooltips.c
trackbar.c
treeview.c
updown.c
rsrc.rc)
set_module_type(comctl32 win32dll)
target_link_libraries(comctl32
${CMAKE_CURRENT_BINARY_DIR}/comctl32.def
uuid
wine)
add_importlibs(comctl32
user32
gdi32
advapi32
winmm
uxtheme
ntdll)
add_dependencies(comctl32 comctl32_def)