]> git.meshlink.io Git - meshlink-tiny/blob - src/CMakeLists.txt
Add an example chat application.
[meshlink-tiny] / src / CMakeLists.txt
1 idf_component_register(SRCS 
2                 "buffer.c"
3                 "conf.c"
4                 "connection.c"
5                 "crypto.c"
6                 "devtools.c"
7                 "dropin.c"
8                 "event.c"
9                 "hash.c"
10                 "list.c"
11                 "logger.c"
12                 "meshlink.c"
13                 "meta.c"
14                 "net.c"
15                 "net_setup.c"
16                 "net_socket.c"
17                 "netutl.c"
18                 "node.c"
19                 "prf.c"
20                 "protocol.c"
21                 "protocol_auth.c"
22                 "protocol_edge.c"
23                 "protocol_key.c"
24                 "protocol_misc.c"
25                 "splay_tree.c"
26                 "sptps.c"
27                 "utils.c"
28                 "xoshiro.c"
29                 "ed25519/add_scalar.c"
30                 "ed25519/ecdh.c"
31                 "ed25519/ecdsa.c"
32                 "ed25519/ecdsagen.c"
33                 "ed25519/fe.c"
34                 "ed25519/ge.c"
35                 "ed25519/key_exchange.c"
36                 "ed25519/keypair.c"
37                 "ed25519/sc.c"
38                 "ed25519/seed.c"
39                 "ed25519/sha512.c"
40                 "ed25519/sign.c"
41                 "ed25519/verify.c"
42                 "chacha-poly1305/chacha-poly1305.c"
43                 "chacha-poly1305/chacha.c"
44                 "chacha-poly1305/poly1305.c"
45                 "mlt_main.c"
46                 INCLUDE_DIRS ".")