mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
32 lines
582 B
CMake
32 lines
582 B
CMake
|
|
add_definitions(-DUSE_WINE_TODOS)
|
|
|
|
list(APPEND SOURCE
|
|
base64.c
|
|
cert.c
|
|
chain.c
|
|
crl.c
|
|
ctl.c
|
|
encode.c
|
|
main.c
|
|
message.c
|
|
msg.c
|
|
object.c
|
|
oid.c
|
|
protectdata.c
|
|
sip.c
|
|
store.c
|
|
str.c)
|
|
|
|
list(APPEND PCH_SKIP_SOURCE
|
|
testlist.c)
|
|
|
|
add_executable(crypt32_winetest
|
|
${SOURCE}
|
|
${PCH_SKIP_SOURCE})
|
|
|
|
set_module_type(crypt32_winetest win32cui)
|
|
add_importlibs(crypt32_winetest crypt32 advapi32 user32 shlwapi shell32 msvcrt kernel32)
|
|
add_pch(crypt32_winetest precomp.h "${PCH_SKIP_SOURCE}")
|
|
add_rostests_file(TARGET crypt32_winetest)
|