mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
37fdeb8a46
Add all winetests to bootcd, thanks to unix find :) svn path=/trunk/; revision=50228
42 lines
820 B
CMake
42 lines
820 B
CMake
|
|
add_definitions(
|
|
-D__ROS_LONG64__
|
|
-D_DLL -D__USE_CRTIMP)
|
|
|
|
remove_definitions(-D_WIN32_WINNT=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600)
|
|
|
|
remove_definitions(-D_WIN32_IE=0x600)
|
|
add_definitions(-D_WIN32_IE=0x500)
|
|
|
|
list(APPEND SOURCE
|
|
comboex.c
|
|
datetime.c
|
|
dpa.c
|
|
header.c
|
|
imagelist.c
|
|
ipaddress.c
|
|
listview.c
|
|
misc.c
|
|
monthcal.c
|
|
mru.c
|
|
progress.c
|
|
propsheet.c
|
|
rebar.c
|
|
status.c
|
|
subclass.c
|
|
tab.c
|
|
toolbar.c
|
|
tooltips.c
|
|
trackbar.c
|
|
treeview.c
|
|
updown.c
|
|
testlist.c
|
|
rsrc.rc)
|
|
|
|
add_executable(comctl32_winetest ${SOURCE})
|
|
target_link_libraries(comctl32_winetest wine)
|
|
set_module_type(comctl32_winetest win32cui)
|
|
add_importlibs(comctl32_winetest comctl32 ole32 user32 gdi32 advapi32 msvcrt kernel32 ntdll)
|
|
add_cab_target(comctl32_winetest 7)
|