reactos/modules/rostests/apitests/crypt32/CMakeLists.txt
Ratin Gao 275c40d26d
[CRYPT32] Initial implementation of CertEnumSystemStoreLocation() (#7746)
Initial implementation of `CertEnumSystemStoreLocation`, which is required by the latest "VirtualBox Guest Additions".

This function returns 8 fixed hard-coded system stores and registered OID system stores, this PR didn't implement the latter because `CryptEnumOIDFunction` is unimplemented, marked as FIXME.
2025-03-11 14:17:38 +01:00

10 lines
315 B
CMake

list(APPEND SOURCE
CertEnumSystemStoreLocation.c
testlist.c)
add_executable(crypt32_apitest ${SOURCE})
target_link_libraries(crypt32_apitest wine ${PSEH_LIB})
set_module_type(crypt32_apitest win32cui)
add_importlibs(crypt32_apitest crypt32 msvcrt kernel32 ntdll)
add_rostests_file(TARGET crypt32_apitest)