summaryrefslogtreecommitdiff
path: root/libs/libaxolotl
diff options
context:
space:
mode:
authorVitaly Svyastyn <protomors@gmail.com>2017-10-31 13:32:16 +0200
committerGeorge Hazan <ghazan@miranda.im>2017-10-31 14:32:16 +0300
commit4d9bf8032dd659e091394d688b6a2c59bf222240 (patch)
tree517f405276c562044b8f7f32a9475e4bac7cf94e /libs/libaxolotl
parent9437834f8f4d3abf32a8629747385d666c652084 (diff)
Initial CMake support. (#1013)
* CMake files for building application and core library. * CMake files for core plugins. Now it runs! * CMake files for some plugins.
Diffstat (limited to 'libs/libaxolotl')
-rw-r--r--libs/libaxolotl/CMakeLists.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/libs/libaxolotl/CMakeLists.txt b/libs/libaxolotl/CMakeLists.txt
new file mode 100644
index 0000000000..a62317dae9
--- /dev/null
+++ b/libs/libaxolotl/CMakeLists.txt
@@ -0,0 +1,11 @@
+file(GLOB SOURCES "src/*.h" "src/*.c"
+"src/protobuf-c/*.c" "src/protobuf-c/*.h"
+"src/curve25519/*.c" "src/curve25519/*.h"
+"src/curve25519/ed25519/*.c" "src/curve25519/ed25519/*.h"
+"src/curve25519/ed25519/nacl_sha512/*.c" "src/curve25519/ed25519/nacl_includes/*.h"
+"src/curve25519/ed25519/additions/*.c" "src/curve25519/ed25519/additions/*.h"
+"src/signal.def")
+include_directories("src" "src/protobuf-c" "src/curve25519" "src/curve25519/ed25519"
+"src/curve25519/ed25519/nacl_includes" "src/curve25519/ed25519/additions")
+set(TARGET libaxolotl)
+include(${CMAKE_SOURCE_DIR}/cmake/lib.cmake) \ No newline at end of file