-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibmite.pro
More file actions
executable file
·117 lines (113 loc) · 3 KB
/
libmite.pro
File metadata and controls
executable file
·117 lines (113 loc) · 3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
SOURCES += \
src/base64/mite_base64.c \
test/base64_test.c \
test/md5_test.c \
src/md5/mite_md5.c \
src/json/test/test.c \
src/json/test/test_utils.c \
src/json/cJSON.c \
src/json/cJSON_Utils.c \
test/json_test.c \
src/threadpool/threadpool.c \
test/thread_pool_test.c \
test/file_test.c \
src/filehelper/mite_file_helper.c \
test/socket_test.c \
src/sockethelper/socket_helper.c \
example/cmdopt/cmdopt_test.c \
example/mysql/mysql_test.c \
example/comtest/comTest.c \
src/utils/mite_utils.c \
test/utils_test.c \
src/crpyto/sm4.c \
test/sm4_test.c \
src/crypto/sm4.c
include(deployment.pri)
qtcAddDeployment()
HEADERS += \
inc/base64/mite_base64.h \
inc/openssl/aes.h \
inc/openssl/asn1.h \
inc/openssl/asn1_mac.h \
inc/openssl/asn1t.h \
inc/openssl/bio.h \
inc/openssl/blowfish.h \
inc/openssl/bn.h \
inc/openssl/buffer.h \
inc/openssl/camellia.h \
inc/openssl/cast.h \
inc/openssl/cmac.h \
inc/openssl/cms.h \
inc/openssl/comp.h \
inc/openssl/conf.h \
inc/openssl/conf_api.h \
inc/openssl/crypto.h \
inc/openssl/des.h \
inc/openssl/des_old.h \
inc/openssl/dh.h \
inc/openssl/dsa.h \
inc/openssl/dso.h \
inc/openssl/dtls1.h \
inc/openssl/e_os2.h \
inc/openssl/ebcdic.h \
inc/openssl/ec.h \
inc/openssl/ecdh.h \
inc/openssl/ecdsa.h \
inc/openssl/engine.h \
inc/openssl/err.h \
inc/openssl/evp.h \
inc/openssl/hmac.h \
inc/openssl/krb5_asn.h \
inc/openssl/kssl.h \
inc/openssl/lhash.h \
inc/openssl/md4.h \
inc/openssl/md5.h \
inc/openssl/modes.h \
inc/openssl/obj_mac.h \
inc/openssl/objects.h \
inc/openssl/ocsp.h \
inc/openssl/opensslconf.h \
inc/openssl/opensslv.h \
inc/openssl/ossl_typ.h \
inc/openssl/pem.h \
inc/openssl/pem2.h \
inc/openssl/pkcs12.h \
inc/openssl/pkcs7.h \
inc/openssl/pqueue.h \
inc/openssl/rand.h \
inc/openssl/rc2.h \
inc/openssl/rc4.h \
inc/openssl/ripemd.h \
inc/openssl/rsa.h \
inc/openssl/safestack.h \
inc/openssl/seed.h \
inc/openssl/sha.h \
inc/openssl/srp.h \
inc/openssl/srtp.h \
inc/openssl/ssl.h \
inc/openssl/ssl2.h \
inc/openssl/ssl23.h \
inc/openssl/ssl3.h \
inc/openssl/stack.h \
inc/openssl/symhacks.h \
inc/openssl/tls1.h \
inc/openssl/ts.h \
inc/openssl/txt_db.h \
inc/openssl/ui.h \
inc/openssl/ui_compat.h \
inc/openssl/whrlpool.h \
inc/openssl/x509.h \
inc/openssl/x509_vfy.h \
inc/openssl/x509v3.h \
inc/md5/mite_md5.h \
inc/json/cJSON.h \
inc/json/cJSON_Utils.h \
inc/threadpool/threadpool.h \
inc/filehelper/mite_file_helper.h \
inc/sockethelper/socket_helper.h \
inc/utils/mite_utils.h \
inc/crypto/sm4.h