Skip to content

Commit

Permalink
fix top source dir
Browse files Browse the repository at this point in the history
  • Loading branch information
janbar committed Dec 2, 2023
1 parent b51754c commit c9cd134
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.8.2)
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")

project(osmin C CXX)

Expand Down Expand Up @@ -230,10 +230,10 @@ if(ANDROID)
NAME ${APP_NAME}
VERSION_CODE ${APP_VERSION_CODE}
PACKAGE_NAME ${APP_ID}
PACKAGE_SOURCES ${CMAKE_SOURCE_DIR}/android/package-sources
PACKAGE_SOURCES ${PROJECT_SOURCE_DIR}/android/package-sources
BUILDTOOLS_REVISION ${QT_ANDROID_SDK_BUILDTOOLS_REVISION}
DEPENDS ssl crypto ${SHARED_LIBOMP}
PLUGINS ${CMAKE_SOURCE_DIR}/resources
PLUGINS ${PROJECT_SOURCE_DIR}/resources
KEYSTORE ${KEYSTORE_FILE} ${KEYSTORE_ALIAS}
KEYSTORE_PASSWORD ${KEYSTORE_PASSWORD}
)
Expand Down

0 comments on commit c9cd134

Please sign in to comment.