2010-12-07 09:27:10 +00:00
|
|
|
|
2012-05-05 16:54:37 +00:00
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502 -D_WIN32_IE=0x600)
|
2010-12-07 09:27:10 +00:00
|
|
|
|
2014-02-13 21:24:18 +00:00
|
|
|
add_definitions(-DUSE_WINE_TODOS)
|
2010-12-07 09:27:10 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
2014-04-22 14:05:48 +00:00
|
|
|
button.c
|
2010-12-07 09:27:10 +00:00
|
|
|
comboex.c
|
|
|
|
datetime.c
|
|
|
|
dpa.c
|
|
|
|
header.c
|
|
|
|
imagelist.c
|
|
|
|
ipaddress.c
|
|
|
|
listview.c
|
|
|
|
misc.c
|
|
|
|
monthcal.c
|
|
|
|
mru.c
|
2012-12-14 23:24:10 +00:00
|
|
|
pager.c
|
2010-12-07 09:27:10 +00:00
|
|
|
progress.c
|
|
|
|
propsheet.c
|
|
|
|
rebar.c
|
|
|
|
status.c
|
|
|
|
subclass.c
|
2012-12-14 23:24:10 +00:00
|
|
|
syslink.c
|
2010-12-07 09:27:10 +00:00
|
|
|
tab.c
|
|
|
|
toolbar.c
|
|
|
|
tooltips.c
|
|
|
|
trackbar.c
|
|
|
|
treeview.c
|
|
|
|
updown.c
|
2012-03-12 13:34:01 +00:00
|
|
|
testlist.c)
|
|
|
|
|
2013-09-14 20:07:14 +00:00
|
|
|
add_executable(comctl32_winetest ${SOURCE} rsrc.rc)
|
|
|
|
set_module_type(comctl32_winetest win32cui)
|
|
|
|
add_importlibs(comctl32_winetest comctl32 ole32 user32 gdi32 advapi32 msvcrt kernel32)
|
|
|
|
add_cd_file(TARGET comctl32_winetest DESTINATION reactos/bin FOR all)
|
2011-06-18 22:02:28 +00:00
|
|
|
|
2012-08-01 23:26:54 +00:00
|
|
|
if(NOT MSVC)
|
2012-03-12 13:34:01 +00:00
|
|
|
# FIXME: http://www.cmake.org/Bug/view.php?id=12998
|
|
|
|
#add_target_compile_flags(comctl32_winetest "-Wno-format")
|
2012-05-05 16:54:37 +00:00
|
|
|
set_source_files_properties(${SOURCE} PROPERTIES COMPILE_FLAGS "-Wno-format")
|
2011-06-18 22:02:28 +00:00
|
|
|
endif()
|