mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +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
28 lines
569 B
CMake
28 lines
569 B
CMake
|
|
add_definitions(-DUSE_WINE_TODOS)
|
|
|
|
list(APPEND SOURCE
|
|
assoc.c
|
|
clist.c
|
|
clsid.c
|
|
generated_${ARCH}.c
|
|
istream.c
|
|
ordinal.c
|
|
path.c
|
|
shreg.c
|
|
string.c
|
|
thread.c
|
|
url.c
|
|
testlist.c)
|
|
|
|
add_executable(shlwapi_winetest ${SOURCE})
|
|
target_link_libraries(shlwapi_winetest uuid)
|
|
set_module_type(shlwapi_winetest win32cui)
|
|
add_importlibs(shlwapi_winetest shlwapi ole32 oleaut32 user32 advapi32 msvcrt kernel32)
|
|
|
|
if(MSVC)
|
|
add_importlibs(shlwapi_winetest ntdll)
|
|
endif()
|
|
|
|
add_cd_file(TARGET shlwapi_winetest DESTINATION reactos/bin FOR all)
|