Skip to content

Commit 930b855

Browse files
committed
build: add jni
1 parent c916671 commit 930b855

File tree

4 files changed

+26
-6
lines changed

4 files changed

+26
-6
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ target_link_libraries(hl log)
2828

2929
set(TJ_LIB ${CMAKE_CURRENT_SOURCE_DIR}/libjpeg-turbo/obj/local/${ANDROID_ABI}/libjpeg-turbo.a)
3030
add_custom_target(turbojpeg
31-
${ANDROID_NDK}/ndk-build APP_ABI=${ANDROID_ABI} APP_PLATFORM=${ANDROID_PLATFORM}
31+
${ANDROID_NDK}/ndk-build APP_ABI=${ANDROID_ABI} APP_PLATFORM=${ANDROID_PLATFORM}
3232
NDK_PROJECT_PATH=./libjpeg-turbo
3333
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
3434
BYPRODUCTS ${TJ_LIB}
@@ -87,6 +87,6 @@ add_library(ui.hdll STATIC ${ui})
8787

8888
# Heaps Application
8989

90-
add_library(heapsapp SHARED out/main.c )
90+
add_library(heapsapp SHARED out/main.c jni.c)
9191
target_include_directories(heapsapp PRIVATE out)
9292
target_link_libraries(heapsapp hl sdl.hdll fmt.hdll openal.hdll ui.hdll)

Makefile

+16-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,25 @@
22

33
all: build install
44

5-
init:
6-
brew install haxe
7-
brew bundle install --file hashlink/Brewfile --no-lock
5+
ifeq ($(OS),Windows_NT)
6+
init: init-root init-widows
7+
endif
8+
ifeq ($(shell uname -s),Darwin)
9+
init: init-root init-darwin
10+
endif
11+
12+
init-root:
813
make -C hashlink
914
make install -C hashlink
1015
haxelib setup /usr/local/lib/haxe/lib
16+
17+
init-windows:
18+
choco install haxe android-studio
19+
20+
init-darwin:
21+
brew install haxe
22+
brew bundle install --file hashlink/Brewfile --no-lock
23+
1124
brew cask install android-studio
1225
ln -sf /Applications/Android\ Studio.app/Contents/plugins/android/lib/templates/gradle/wrapper/gradlew /usr/local/bin
1326
chmod u+x /usr/local/bin/gradlew

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ make init
1414

1515
```sh
1616
make heaps-world
17-
make # (make build && make install)
17+
make # make build && make install
1818
```

jni.c

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#include <jni.h>
2+
3+
extern int main(int argc, char *argv[]); // assuming that haxe->hl/c entry point is included (which includes hlc_main.c which includes the main function)
4+
5+
JNIEXPORT int JNICALL Java_io_heaps_android_HeapsActivity_startHL(JNIEnv* env, jclass cls) {
6+
return main(0, NULL);
7+
}

0 commit comments

Comments
 (0)