-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
29 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Sets the minimum version of CMake required to build your native library. | ||
# This ensures that a certain set of CMake features is available to | ||
# your build. | ||
|
||
|
||
cmake_minimum_required(VERSION 3.4.1) | ||
|
||
# Specifies a library name, specifies whether the library is STATIC or | ||
# SHARED, and provides relative paths to the source code. You can | ||
# define multiple libraries by adding multiple add_library() commands, | ||
# and CMake builds them for you. When you build your app, Gradle | ||
# automatically packages shared libraries with your APK. | ||
|
||
|
||
add_library(native-log-lib SHARED | ||
log.cpp) | ||
|
||
add_library(native-properties-lib SHARED | ||
properties.cpp) | ||
|
||
add_library(native-shell-lib SHARED | ||
shell.cpp) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters