reactos/rostests/apitests/advapi32/CMakeLists.txt
Thomas Faber 3a5e3ae774 [ADVAPI32_APITEST]
- Add a test for RegEnumKeyExW showing that it should return ERROR_MORE_DATA instead of ERROR_BUFFER_OVERFLOW when the name buffer is too small. Based on a patch by Doug Lyons.
CORE-12030

svn path=/trunk/; revision=72876
2016-10-01 14:41:41 +00:00

22 lines
567 B
CMake

list(APPEND SOURCE
CreateService.c
DuplicateTokenEx.c
eventlog.c
HKEY_CLASSES_ROOT.c
IsTextUnicode.c
LockDatabase.c
QueryServiceConfig2.c
RegEnumKey.c
RegEnumValueW.c
RegQueryInfoKey.c
RtlEncryptMemory.c
SaferIdentifyLevel.c
testlist.c)
add_executable(advapi32_apitest ${SOURCE})
target_link_libraries(advapi32_apitest wine ${PSEH_LIB})
set_module_type(advapi32_apitest win32cui)
add_importlibs(advapi32_apitest advapi32 msvcrt kernel32 ntdll)
add_cd_file(TARGET advapi32_apitest DESTINATION reactos/bin FOR all)