diff options
-rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5bf52a22..5c225c9b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -18,15 +18,15 @@ | |||
18 | cmake_minimum_required (VERSION 3.9) | 18 | cmake_minimum_required (VERSION 3.9) |
19 | 19 | ||
20 | project (Lagrange | 20 | project (Lagrange |
21 | VERSION 1.9.2 | 21 | VERSION 1.10.0 |
22 | DESCRIPTION "A Beautiful Gemini Client" | 22 | DESCRIPTION "A Beautiful Gemini Client" |
23 | LANGUAGES C | 23 | LANGUAGES C |
24 | ) | 24 | ) |
25 | set (COPYRIGHT_YEAR 2021) | 25 | set (COPYRIGHT_YEAR 2021) |
26 | if (IOS) | 26 | if (IOS) |
27 | set (PROJECT_VERSION 1.7) | 27 | set (PROJECT_VERSION 1.10) |
28 | set (IOS_BUNDLE_VERSION 23) | 28 | set (IOS_BUNDLE_VERSION 1) |
29 | set (IOS_BUILD_DATE "2021-10-23") | 29 | set (IOS_BUILD_DATE "2021-12-05") |
30 | endif () | 30 | endif () |
31 | 31 | ||
32 | # Defaults that depend on environment. | 32 | # Defaults that depend on environment. |
@@ -225,7 +225,7 @@ set (SOURCES | |||
225 | res/about/version.gmi | 225 | res/about/version.gmi |
226 | ${EMB_BIN} | 226 | ${EMB_BIN} |
227 | ) | 227 | ) |
228 | if (NOT APPLE) # macos.m has Sparkle updater | 228 | if (IOS OR NOT APPLE) # macos.m has Sparkle updater |
229 | list (APPEND SOURCES src/updater.c) | 229 | list (APPEND SOURCES src/updater.c) |
230 | endif () | 230 | endif () |
231 | if (ENABLE_IPC) | 231 | if (ENABLE_IPC) |
@@ -264,7 +264,7 @@ if (MSYS) | |||
264 | configure_file (res/lagrange.rc.in ${CMAKE_CURRENT_BINARY_DIR}/lagrange.rc NEWLINE_STYLE WIN32) | 264 | configure_file (res/lagrange.rc.in ${CMAKE_CURRENT_BINARY_DIR}/lagrange.rc NEWLINE_STYLE WIN32) |
265 | list (APPEND SOURCES src/win32.c src/win32.h ${CMAKE_CURRENT_BINARY_DIR}/lagrange.rc) | 265 | list (APPEND SOURCES src/win32.c src/win32.h ${CMAKE_CURRENT_BINARY_DIR}/lagrange.rc) |
266 | endif () | 266 | endif () |
267 | set_source_files_properties (${RESOURCES} PROPERTIES MACOSX_PACKAGE_LOCATION Resources) | 267 | #set_source_files_properties (${RESOURCES} PROPERTIES MACOSX_PACKAGE_LOCATION Resources) |
268 | if (MSYS OR (APPLE AND NOT MOBILE) OR (UNIX AND NOT MOBILE)) | 268 | if (MSYS OR (APPLE AND NOT MOBILE) OR (UNIX AND NOT MOBILE)) |
269 | add_definitions (-DiPlatformPcDesktop=1) | 269 | add_definitions (-DiPlatformPcDesktop=1) |
270 | endif () | 270 | endif () |