mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-05 00:38:00 +01:00
add LIBSUPERDERPY_VERSION variable for packaging
This commit is contained in:
parent
519a22c9ad
commit
0bdbd27320
2 changed files with 5 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="net.dosowisko.${LIBSUPERDERPY_GAMENAME}"
|
||||
android:versionCode="1"
|
||||
android:versionName="1.0"
|
||||
android:versionName="${LIBSUPERDERPY_VERSION}"
|
||||
android:installLocation="auto">
|
||||
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="16" />
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
||||
|
|
|
@ -89,6 +89,10 @@ if(LIBSUPERDERPY_GAMENAME)
|
|||
include_directories("${CMAKE_BINARY_DIR}/gen")
|
||||
endif(LIBSUPERDERPY_GAMENAME)
|
||||
|
||||
if (NOT LIBSUPERDERPY_VERSION)
|
||||
set(LIBSUPERDERPY_VERSION "0.1")
|
||||
endif(NOT LIBSUPERDERPY_VERSION)
|
||||
|
||||
MACRO(add_libsuperderpy_target EXECUTABLE_SRC_LIST)
|
||||
if(ANDROID)
|
||||
set(EXECUTABLE game)
|
||||
|
|
Loading…
Reference in a new issue