2010-12-07 09:27:10 +00:00
|
|
|
|
2016-04-20 12:39:37 +00:00
|
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2015-03-14 23:33:29 +00:00
|
|
|
|
2010-12-07 09:27:10 +00:00
|
|
|
list(APPEND SOURCE
|
|
|
|
cred.c
|
|
|
|
crypt.c
|
|
|
|
crypt_lmhash.c
|
|
|
|
crypt_md4.c
|
|
|
|
crypt_md5.c
|
|
|
|
crypt_sha.c
|
|
|
|
eventlog.c
|
|
|
|
lsa.c
|
|
|
|
registry.c
|
|
|
|
security.c
|
|
|
|
service.c
|
|
|
|
testlist.c)
|
|
|
|
|
|
|
|
add_executable(advapi32_winetest ${SOURCE})
|
2015-03-10 10:10:54 +00:00
|
|
|
|
|
|
|
if(NOT MSVC)
|
|
|
|
add_target_compile_flags(advapi32_winetest "-Wno-format")
|
|
|
|
endif()
|
|
|
|
|
2010-12-07 09:27:10 +00:00
|
|
|
set_module_type(advapi32_winetest win32cui)
|
2015-05-25 18:46:12 +00:00
|
|
|
add_importlibs(advapi32_winetest advapi32 ole32 msvcrt kernel32 ntdll)
|
2017-01-13 09:24:15 +00:00
|
|
|
add_rostests_file(TARGET advapi32_winetest)
|