1 2add_definitions(-DWINE_NO_UNICODE_MACROS) 3 4list(APPEND SOURCE 5 browseui.c 6 ieframe.c 7 netcfgx.c 8 netshell.c 9 ole32.c 10 shdocvw.c 11 shell32.c 12 zipfldr.c 13 com_apitest.c 14 com_apitest.h) 15 16add_executable(com_apitest ${SOURCE} testlist.c) 17target_link_libraries(com_apitest wine uuid) 18set_module_type(com_apitest win32cui) 19add_importlibs(com_apitest advapi32 ole32 shlwapi shell32 msvcrt kernel32 ntdll) 20add_pch(com_apitest com_apitest.h SOURCE) 21add_rostests_file(TARGET com_apitest) 22