Skip to content

Commit cc0651b

Browse files
committed
0.2.0
1 parent eff86c8 commit cc0651b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+1726
-103
lines changed

CHANGELOG.md

Lines changed: 16 additions & 10 deletions

README.md

Lines changed: 10 additions & 6 deletions

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ android {
4545
}
4646
externalNativeBuild {
4747
cmake {
48-
path file('CMakeLists.txt')
48+
path file('../c/h3lib/CMakeLists.txt')
4949
version '3.18.1'
5050
}
5151
}

c/h3lib/CMakeLists.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
cmake_minimum_required(VERSION 3.4.1)
2+
set(CMAKE_OSX_ARCHITECTURES "x86_64" CACHE INTERNAL "" FORCE)
3+
4+
FILE(GLOB CSources *.c)
5+
FILE(GLOB HSources *.h)
6+
7+
add_library( h3lib
8+
9+
# Sets the library as a shared library.
10+
SHARED
11+
12+
# Provides a relative path to your source file(s).
13+
${CSources}
14+
${HSources})
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)