Overview
Comment: | Add meson.build |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0992287dbb84e66482d31c2c4df8b650 |
User & Date: | js 2024-08-04 13:34:29 |
Context
2024-08-10
| ||
23:16 | Remove Makefile and .fossil-settings check-in: fe8eae05f5 user: js tags: trunk | |
2024-08-04
| ||
13:34 | Add meson.build check-in: 0992287dbb user: js tags: trunk | |
2023-04-01
| ||
17:20 | Update iOS app to ObjFW changes check-in: 3eecffa2af user: js tags: trunk | |
Changes
Changes to .fossil-settings/clean-glob.
|
| < < < > | 1 2 3 | build iOS/DerivedData iOS/ObjFW |
Changes to .fossil-settings/ignore-glob.
|
| < < < > | 1 2 3 4 5 | build iOS/CryptoPassphrase.xcodeproj/project.xcworkspace iOS/CryptoPassphrase.xcodeproj/xcuserdata iOS/DerivedData iOS/ObjFW |
Changes to Makefile.
|
| < < < < < |
Added meson.build.
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | project('CryptoPassphrase', 'objc', version: '1.3', meson_version: '>= 1.5.0') objfw_dep = dependency('objfw') executable('cryptopassphrase', [ 'CryptoPassphrase.m', 'LegacyPasswordGenerator.m', 'NewPasswordGenerator.m' ], dependencies: [objfw_dep], pie: true, install: true) |