Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-23 | CMakeLists.txt: export include directories in install(TARGETS) | Alexey Rusakov | |
Without that, if olm is installed to a non-standard location, the user code might run CMake configuration fine but further building will fail. Signed-off-by: Alexey Rusakov <Alexey.Rusakov@pm.me> | |||
2019-10-09 | release 3.1.43.1.4 | Hubert Chathi | |
2019-07-03 | CMakeLists.txt: add env vars to target_include_directories | Alexey Andreyev | |
2019-06-24 | release 3.1.33.1.3 | Hubert Chathi | |
2019-04-30 | release 3.1.23.1.2 | Hubert Chathi | |
2019-04-29 | bump version number for 3.1.13.1.1 | Hubert Chathi | |
2019-04-29 | export all symbols for Windows DLLs | Hubert Chathi | |
2019-04-28 | cmake: Add the SAS functions to the CMake build. | Damir Jelić | |
Signed-off-by: Damir Jelić <poljar@termina.org.uk> | |||
2019-04-17 | prepare for 3.1.0 release | Hubert Chathi | |
2018-10-23 | prepare release 3.0.0 | Hubert Chathi | |
2018-10-23 | default to building as a shared library | Hubert Chathi | |
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> |