blob: 9859a3923d0e113e93c79e1acb50586479229a22 (
plain) (
blame)
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
|
LIBRARY()
LICENSE(Python-2.0)
PEERDIR(
contrib/libs/sqlite3
)
ADDINCL(
contrib/libs/sqlite3
)
IF (USE_SYSTEM_PYTHON)
# Prevent configure error when arcadia python is a tool in a system python graph.
ADDINCL(
contrib/tools/python/src/Include
)
ENDIF()
PYTHON2_ADDINCL()
NO_COMPILER_WARNINGS()
NO_RUNTIME()
SRCS(
cache.c
connection.c
cursor.c
microprotocols.c
module.c
prepare_protocol.c
row.c
statement.c
util.c
)
PY_REGISTER(_sqlite3)
END()
|