reactos/rostests/apitests/netapi32/CMakeLists.txt
Colin Finck e5654cce9f [NETAPI32_APITEST]
Add a simple API Test for netapi32.dll, only covering DsRoleGetPrimaryDomainInformation so far.
It succeeds in ReactOS, but outputs a heap error in the debug log. In real world applications, this later leads to a heap assertion failure.

svn path=/trunk/; revision=75208
2017-06-26 15:19:07 +00:00

11 lines
327 B
CMake

list(APPEND SOURCE
DsRoleGetPrimaryDomainInformation.c
testlist.c)
add_executable(netapi32_apitest ${SOURCE})
target_link_libraries(netapi32_apitest wine ${PSEH_LIB})
set_module_type(netapi32_apitest win32cui)
add_importlibs(netapi32_apitest netapi32 msvcrt kernel32 ntdll)
add_rostests_file(TARGET netapi32_apitest)