reactos/modules/rostests/apitests/afd/CMakeLists.txt
2019-02-25 22:34:28 +01:00

17 lines
418 B
CMake

include_directories(
${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers)
list(APPEND SOURCE
AfdHelpers.c
send.c
windowsize.c
precomp.h)
add_executable(afd_apitest ${SOURCE} testlist.c)
target_link_libraries(afd_apitest wine)
set_module_type(afd_apitest win32cui)
add_importlibs(afd_apitest ws2_32 msvcrt kernel32 ntdll)
add_pch(afd_apitest precomp.h SOURCE)
add_rostests_file(TARGET afd_apitest)