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: |
33735ae0cda4e9b5b50dc7082d7996de |
User & Date: | js on 2024-08-11 18:01:50 |
Other Links: | manifest | tags |
Context
2024-08-17
| ||
00:33 | Include includedir in .oc file Leaf check-in: 7c54d67cf3 user: js tags: trunk | |
2024-08-11
| ||
18:01 | Set version to 1.0 check-in: 33735ae0cd user: js tags: trunk, 1.0-release | |
18:00 | Change prefix to PGSQL check-in: 77c26b4fce user: js tags: trunk | |
Changes
Modified meson.build from [8b491c9ab3] to [05e6318ef5].
1 | project('ObjPgSQL', 'objc', | | | 1 2 3 4 5 6 7 8 9 | project('ObjPgSQL', 'objc', version: '1.0', meson_version: '>= 1.5.0', default_options: { 'warning_level': '3', }) objfw_dep = dependency('objfw') libpq_dep = dependency('libpq') |
︙ | ︙ |
Modified src/meson.build from [c0c95e2704] to [0f845e1b24].
︙ | ︙ | |||
8 9 10 11 12 13 14 | 'PGSQLResultRow.m', ) objpgsql = library('objpgsql', sources + exceptions_sources, include_directories: incdir, dependencies: [objfw_dep, libpq_dep], | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 'PGSQLResultRow.m', ) objpgsql = library('objpgsql', sources + exceptions_sources, include_directories: incdir, dependencies: [objfw_dep, libpq_dep], soversion: '1.0.0', install: true) headers = ['ObjPgSQL.h'] foreach source: sources + exceptions_sources headers += fs.replace_suffix(source.full_path(), '.h') endforeach |
︙ | ︙ |