Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-12 | remove fuzzers from cmake, since it doesn't work properly | Hubert Chathi | |
2018-10-12 | add pk files to cmake, avoid some duplication, and update documentation | Hubert Chathi | |
2018-10-12 | Add CMake support | Konstantinos Sideris | |
The library can now be installed using CMake v3.0+. Below is an example configuration. 1. Generate configuation cmake -H. -Bbuild -GNinja -DCMAKE_BUILD_TYPE=Release // The default profile. -DCMAKE_INSTALL_PREFIX=/usr/local/ -DBUILD_SHARED_LIBS=ON -DOLM_TESTS=1 -DOLM_FUZZERS=1 2. Build & install the targets cmake --build build --config Release --target install 3. Run the tests cd build/test && ctest . The library can also be used as a dependency with CMake using find_package(Olm::Olm REQUIRED) target_link_libraries(my_exe Olm::Olm) Signed-off-by: Konstantinos Sideris <sideris.konstantin@gmail.com> | |||
2016-10-24 | Fix broken fuzzer compilation | Richard van der Hoff | |
fuzz_group_decrypt.cpp got broken by 653790e; fix it up | |||
2016-10-19 | Add a README for the fuzzers | Richard van der Hoff | |
2016-05-26 | Add a fuzzer for olm_group_decrypt | Mark Haines | |
2016-05-23 | Add support for building fuzzers using american fuzzy lop | Mark Haines | |
Builds fuzzers using http://lcamtuf.coredump.cx/afl/ |