1 2list(APPEND SOURCE 3 QueryPoints.c) 4 5list(APPEND PCH_SKIP_SOURCE 6 testlist.c) 7 8add_executable(mountmgr_apitest 9 ${SOURCE} 10 ${PCH_SKIP_SOURCE}) 11 12target_link_libraries(mountmgr_apitest wine ${PSEH_LIB}) 13set_module_type(mountmgr_apitest win32cui) 14add_importlibs(mountmgr_apitest msvcrt kernel32 ntdll) 15# TODO: Enable this when we get more than one source file to justify its use 16#add_pch(mountmgr_apitest precomp.h "${PCH_SKIP_SOURCE}") 17add_rostests_file(TARGET mountmgr_apitest) 18