1 2include_directories( 3 ${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers) 4 5list(APPEND SOURCE 6 AfdHelpers.c 7 send.c 8 precomp.h) 9 10add_executable(afd_apitest ${SOURCE} testlist.c) 11target_link_libraries(afd_apitest wine) 12set_module_type(afd_apitest win32cui) 13add_importlibs(afd_apitest ws2_32 msvcrt kernel32 ntdll) 14add_pch(afd_apitest precomp.h SOURCE) 15add_rostests_file(TARGET afd_apitest) 16