8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
'MTXSQLite3Storage.m',
)
objmatrix = library('objmatrix',
sources + exceptions_sources,
include_directories: incdir,
dependencies: objfw_dep,
install: true)
headers = ['MTXStorage.h', 'ObjMatrix.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
|
'MTXSQLite3Storage.m',
)
objmatrix = library('objmatrix',
sources + exceptions_sources,
include_directories: incdir,
dependencies: objfw_dep,
soversion: '0.0.0',
install: true)
headers = ['MTXStorage.h', 'ObjMatrix.h']
foreach source: sources + exceptions_sources
headers += fs.replace_suffix(source.full_path(), '.h')
endforeach
|