diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-05-14 15:09:54 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-05-14 15:09:54 +0300 |
commit | 21b16be87fec3ec163fb52b94619ba5f3b5df6d2 (patch) | |
tree | 73df8c1469f9d7f4186b40ea7b8d34c5b6dfd7bf /CMakeLists.txt | |
parent | 7f737f1b88448a8a2ccca716a09e3b37fb0c08f9 (diff) |
Mobile and iOS: Various fixes and cleanup
Several regressions occurred when the split view mode was implemented.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ffb34d9c..98fd29fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -22,8 +22,11 @@ project (Lagrange | |||
22 | DESCRIPTION "A Beautiful Gemini Client" | 22 | DESCRIPTION "A Beautiful Gemini Client" |
23 | LANGUAGES C | 23 | LANGUAGES C |
24 | ) | 24 | ) |
25 | set (IOS_BUNDLE_VERSION 6) | ||
26 | set (COPYRIGHT_YEAR 2021) | 25 | set (COPYRIGHT_YEAR 2021) |
26 | if (IOS) | ||
27 | set (PROJECT_VERSION 1.4) # pinned for TestFlight | ||
28 | set (IOS_BUNDLE_VERSION 7) # just increment this | ||
29 | endif () | ||
27 | 30 | ||
28 | # Build configuration. | 31 | # Build configuration. |
29 | option (ENABLE_IPC "Use IPC to communicate between running instances" ON) | 32 | option (ENABLE_IPC "Use IPC to communicate between running instances" ON) |