8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
)
objsqlite3 = library('objsqlite3',
sources + exceptions_sources,
include_directories: incdir,
objc_args: ['-DSL3_PUBLIC_IVARS'],
dependencies: [objfw_dep, sqlite3_dep],
install: true)
headers = ['ObjSQLite3.h']
foreach source: sources + exceptions_sources
headers += fs.replace_suffix(source.full_path(), '.h')
endforeach
|
>
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
)
objsqlite3 = library('objsqlite3',
sources + exceptions_sources,
include_directories: incdir,
objc_args: ['-DSL3_PUBLIC_IVARS'],
dependencies: [objfw_dep, sqlite3_dep],
soversion: '0.0',
install: true)
headers = ['ObjSQLite3.h']
foreach source: sources + exceptions_sources
headers += fs.replace_suffix(source.full_path(), '.h')
endforeach
|