mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
16 lines
418 B
CMake
16 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)
|