Skip to content

Commit

Permalink
prepare for release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
halibobo1205 committed Dec 27, 2022
1 parent f1bf6a6 commit 698fc8b
Show file tree
Hide file tree
Showing 27 changed files with 1,457 additions and 1,272 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ hs_err_pid*

librustzcash
build
target
.idea
*.class
.gradle
*.a
cmake-build-debug
Expand Down
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,21 @@ $ git submodule update --init --recursive

# Required

cmake (version >= 3.10.2)
cmake (version >= 3.10.2)

cargo

libtool

automake

mvn (version >= 3.3.9)

jdk8(need JAVA_HOME set)

# for m1
```shell
cd cpp && mkdir build && cd build
CC=cc cmake ..
make
```
106 changes: 0 additions & 106 deletions build.gradle

This file was deleted.

Empty file removed cpp/.gitkeep
Empty file.
11 changes: 7 additions & 4 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,17 @@ set(CMAKE_BUILD_TYPE Release)
SET(CMAKE_CXX_FLAGS_RELEASE "$ENV{CXXFLAGS} -O3 -Wall -DNDEBUG")
find_package( Threads )
find_package(Java REQUIRED)
find_package(JNI REQUIRED)
# find_package(JNI REQUIRED)
include(UseJava)
include(ExternalProject)

include_directories(include)
include_directories(${JNI_INCLUDE_DIRS})
include_directories(${JAVA_INCLUDE_PATH})
include_directories(${JAVA_INCLUDE_PATH2})
# include_directories(${JNI_INCLUDE_DIRS})
# include_directories(${JAVA_INCLUDE_PATH})
# include_directories(${JAVA_INCLUDE_PATH2})
include_directories($ENV{JAVA_HOME}/include)
include_directories($ENV{JAVA_HOME}/include/linux)
include_directories($ENV{JAVA_HOME}/include/darwin)

link_directories(lib)

Expand Down
Empty file removed cpp/src/.gitkeep
Empty file.
Binary file removed gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 0 additions & 6 deletions gradle/wrapper/gradle-wrapper.properties

This file was deleted.

172 changes: 0 additions & 172 deletions gradlew

This file was deleted.

Loading

0 comments on commit 698fc8b

Please sign in to comment.