1
2include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
3
4list(APPEND SOURCE
5    cred.c
6    crypt.c
7    crypt_lmhash.c
8    crypt_md4.c
9    crypt_md5.c
10    crypt_sha.c
11    eventlog.c
12    lsa.c
13    registry.c
14    security.c
15    service.c
16    precomp.h)
17
18add_executable(advapi32_winetest ${SOURCE} testlist.c)
19
20if(USE_CLANG_CL OR (NOT MSVC))
21    target_compile_options(advapi32_winetest PRIVATE "-Wno-format")
22endif()
23
24set_module_type(advapi32_winetest win32cui)
25add_importlibs(advapi32_winetest advapi32 ole32 user32 msvcrt kernel32 ntdll)
26add_pch(advapi32_winetest precomp.h SOURCE)
27add_rostests_file(TARGET advapi32_winetest)
28