blob: 365e45bb2bb57d1e69a22113f26c9e7fbfc5c128 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
foreach(fuzz IN ITEMS
fuzz_decode_message
fuzz_decrypt
fuzz_group_decrypt
fuzz_unpickle_account
fuzz_unpickle_session
)
add_executable(${fuzz} ${fuzz}.cpp)
target_include_directories(${fuzz} PRIVATE include)
target_link_libraries(${fuzz} Olm::Olm)
endforeach(fuzz)
|