reactos/modules/rostests/apitests/advapi32/CMakeLists.txt
Pierre Schweitzer abb6fd83a4
[ADVAPI32_APITEST] Add tests showing that first field of OwningModuleInfo is the tag
Also, show that querying owner information about a connection owned by a service
returns the service name, and not the image nor its path.

Obviously, that fails in ReactOS.
2018-12-31 11:19:29 +01:00

29 lines
729 B
CMake

list(APPEND SOURCE
CreateService.c
DuplicateTokenEx.c
eventlog.c
HKEY_CLASSES_ROOT.c
IsTextUnicode.c
LockServiceDatabase.c
QueryServiceConfig2.c
RegEnumKey.c
RegEnumValueW.c
RegOpenKeyExW.c
RegQueryInfoKey.c
RegQueryValueExW.c
RtlEncryptMemory.c
SaferIdentifyLevel.c
ServiceArgs.c
ServiceEnv.c
ServiceNetwork.c
svchlp.c
precomp.h)
add_executable(advapi32_apitest ${SOURCE} testlist.c)
target_link_libraries(advapi32_apitest wine ${PSEH_LIB})
set_module_type(advapi32_apitest win32cui)
add_importlibs(advapi32_apitest advapi32 iphlpapi ws2_32 msvcrt kernel32 ntdll)
add_pch(advapi32_apitest precomp.h SOURCE)
add_rostests_file(TARGET advapi32_apitest)