Skip to content

Commit

Permalink
Bump up API level
Browse files Browse the repository at this point in the history
  • Loading branch information
kebekus committed Jul 11, 2024
1 parent e077dc7 commit a161685
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

# Basic information about our project
project(addhoursandminutes VERSION 1.4.3)
project(addhoursandminutes VERSION 1.4.4)
set(APP_ID de.akaflieg_freiburg.cavok.add_hours_and_minutes)
set(DISPLAY_NAME "Add Times")
set(PROJECT_DATE 2023-11-24)
set(PROJECT_DATE 2024-07-11)
math(EXPR PROJECT_VERSION_CODE 100000*${PROJECT_VERSION_MAJOR}+1000*${PROJECT_VERSION_MINOR}+${PROJECT_VERSION_PATCH})
add_definitions( -DPROJECT_VERSION="${PROJECT_VERSION}" )

Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ endif()
#

if (CMAKE_SYSTEM_NAME STREQUAL "Android")

# Icons
file(COPY ${CMAKE_SOURCE_DIR}/generatedSources/src/android DESTINATION .)

Expand All @@ -92,11 +93,10 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Android")

set_target_properties(${PROJECT_NAME} PROPERTIES
QT_ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/android"
QT_ANDROID_TARGET_SDK_VERSION 33
QT_ANDROID_TARGET_SDK_VERSION 35
QT_ANDROID_MIN_SDK_VERSION 26
)


endif ()


Expand Down

0 comments on commit a161685

Please sign in to comment.