aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
AgeCommit message (Collapse)Author
2020-11-05Convert to sibs projectHEADmasterdec05eba
2020-10-29Use current source directory in CMake. Thanks to Gorgurov Alexey.Hubert Chathi
2020-10-06bump version numbers and update changelog3.2.1Hubert Chathi
2020-10-06bump version numbers and update changelog3.2.0Hubert Chathi
2020-06-11bump version info for release3.1.5Hubert Chathi
2019-10-23CMakeLists.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-09release 3.1.43.1.4Hubert Chathi
2019-07-03CMakeLists.txt: add env vars to target_include_directoriesAlexey Andreyev
2019-06-24release 3.1.33.1.3Hubert Chathi
2019-04-30release 3.1.23.1.2Hubert Chathi
2019-04-29bump version number for 3.1.13.1.1Hubert Chathi
2019-04-29export all symbols for Windows DLLsHubert Chathi
2019-04-28cmake: Add the SAS functions to the CMake build.Damir Jelić
Signed-off-by: Damir Jelić <poljar@termina.org.uk>
2019-04-17prepare for 3.1.0 releaseHubert Chathi
2018-10-23prepare release 3.0.0Hubert Chathi
2018-10-23default to building as a shared libraryHubert Chathi
2018-10-12remove fuzzers from cmake, since it doesn't work properlyHubert Chathi
2018-10-12add pk files to cmake, avoid some duplication, and update documentationHubert Chathi
2018-10-12Add CMake supportKonstantinos 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>