summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-05-14 15:09:54 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-05-14 15:09:54 +0300
commit21b16be87fec3ec163fb52b94619ba5f3b5df6d2 (patch)
tree73df8c1469f9d7f4186b40ea7b8d34c5b6dfd7bf /CMakeLists.txt
parent7f737f1b88448a8a2ccca716a09e3b37fb0c08f9 (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.txt5
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)
25set (IOS_BUNDLE_VERSION 6)
26set (COPYRIGHT_YEAR 2021) 25set (COPYRIGHT_YEAR 2021)
26if (IOS)
27 set (PROJECT_VERSION 1.4) # pinned for TestFlight
28 set (IOS_BUNDLE_VERSION 7) # just increment this
29endif ()
27 30
28# Build configuration. 31# Build configuration.
29option (ENABLE_IPC "Use IPC to communicate between running instances" ON) 32option (ENABLE_IPC "Use IPC to communicate between running instances" ON)