Overview
Comment: | Set version to 1.0 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 1.0-release |
Files: | files | file ages | folders |
SHA3-256: |
cad44bcb35658c850ff45eaa6cdd0200 |
User & Date: | js on 2024-08-11 12:05:32 |
Other Links: | manifest | tags |
Context
2024-08-11
| ||
18:16 | Minor documentation improvement check-in: 4a11efb8df user: js tags: trunk | |
12:05 | Set version to 1.0 check-in: cad44bcb35 user: js tags: trunk, 1.0-release | |
11:49 | ObjSQLite3.h: Import all exceptions check-in: d1beadb92d user: js tags: trunk | |
Changes
Modified meson.build from [6941d753bc] to [7ad037e2a1].
1 | project('ObjSQLite3', 'objc', | | | 1 2 3 4 5 6 7 8 9 | project('ObjSQLite3', 'objc', version: '1.0', meson_version: '>= 1.5.0', default_options: { 'warning_level': '3', }) objfw_dep = dependency('objfw') sqlite3_dep = dependency('sqlite3') |
︙ | ︙ |
Modified src/meson.build from [5d051f5642] to [b94f41ff3a].
︙ | ︙ | |||
8 9 10 11 12 13 14 | ) objsqlite3 = library('objsqlite3', sources + exceptions_sources, include_directories: incdir, objc_args: ['-DSL3_PUBLIC_IVARS'], dependencies: [objfw_dep, sqlite3_dep], | | | 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: '1.0.0', install: true) headers = ['ObjSQLite3.h'] foreach source: sources + exceptions_sources headers += fs.replace_suffix(source.full_path(), '.h') endforeach |
︙ | ︙ |