forked from Open-TEE/libtee_pkcs11
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibtee_pkcs11.qbs
41 lines (35 loc) · 889 Bytes
/
libtee_pkcs11.qbs
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
import qbs
DynamicLibrary {
name: "tee_pkcs11"
Group {
name: "project-install"
fileTagsFilter: "dynamiclibrary"
qbs.install: false
qbs.installDir: "lib"
}
Depends { name: "cpp" }
Depends { name: "tee" }
cpp.includePaths: ["include"]
cpp.dynamicLibraries: ["dl", "pthread"]
destinationDirectory: '.'
Export {
Depends { name: "cpp" }
Depends { name: "tee" }
cpp.includePaths: "include"
}
files: [
"include/cryptoki.h",
"include/pkcs11.h",
"include/pkcs11t.h",
"include/pkcs11f.h",
"src/commands.h",
"src/hal.h",
"src/hal_gp.c",
"src/mutex_manager.c",
"src/mutex_manager.h",
"src/pkcs11_crypto.c",
"src/pkcs11_general.c",
"src/pkcs11_object.c",
"src/pkcs11_session_slot.c",
]
}