mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 03:48:17 +00:00
dd21fa115a
Handle generated tests on all architectures. Update i386 files. The kernel32 generated remains disabled, Wine's definition of COMMCONFIG differs from our/MSDN definition. Commented out nonexisting LPEXCEPTION_RECORD. svn path=/trunk/; revision=70802
37 lines
783 B
CMake
37 lines
783 B
CMake
|
|
remove_definitions(-DWINVER=0x502 -D_WIN32_IE=0x600 -D_WIN32_WINNT=0x502)
|
|
|
|
list(APPEND SOURCE
|
|
appbar.c
|
|
assoc.c
|
|
autocomplete.c
|
|
brsfolder.c
|
|
ebrowser.c
|
|
generated_${ARCH}.c
|
|
progman_dde.c
|
|
recyclebin.c
|
|
shelldispatch.c
|
|
shelllink.c
|
|
shellole.c
|
|
shellpath.c
|
|
shfldr_special.c
|
|
shlexec.c
|
|
shlfileop.c
|
|
shlfolder.c
|
|
shlview.c
|
|
string.c
|
|
systray.c
|
|
testlist.c
|
|
rsrc.rc)
|
|
|
|
add_executable(shell32_winetest ${SOURCE})
|
|
target_link_libraries(shell32_winetest uuid)
|
|
set_module_type(shell32_winetest win32cui)
|
|
add_importlibs(shell32_winetest shell32 ole32 oleaut32 user32 advapi32 msvcrt kernel32)
|
|
|
|
if(MSVC)
|
|
add_importlibs(shell32_winetest ntdll)
|
|
endif()
|
|
|
|
add_cd_file(TARGET shell32_winetest DESTINATION reactos/bin FOR all)
|