File tree 4 files changed +26
-6
lines changed
4 files changed +26
-6
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ target_link_libraries(hl log)
28
28
29
29
set (TJ_LIB ${CMAKE_CURRENT_SOURCE_DIR} /libjpeg-turbo/obj/local/${ANDROID_ABI} /libjpeg-turbo.a)
30
30
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}
32
32
NDK_PROJECT_PATH=./libjpeg-turbo
33
33
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
34
34
BYPRODUCTS ${TJ_LIB}
@@ -87,6 +87,6 @@ add_library(ui.hdll STATIC ${ui})
87
87
88
88
# Heaps Application
89
89
90
- add_library (heapsapp SHARED out/main.c )
90
+ add_library (heapsapp SHARED out/main.c jni.c )
91
91
target_include_directories (heapsapp PRIVATE out)
92
92
target_link_libraries (heapsapp hl sdl.hdll fmt.hdll openal.hdll ui.hdll)
Original file line number Diff line number Diff line change 2
2
3
3
all : build install
4
4
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 :
8
13
make -C hashlink
9
14
make install -C hashlink
10
15
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
+
11
24
brew cask install android-studio
12
25
ln -sf /Applications/Android\ Studio.app/Contents/plugins/android/lib/templates/gradle/wrapper/gradlew /usr/local/bin
13
26
chmod u+x /usr/local/bin/gradlew
Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ make init
14
14
15
15
``` sh
16
16
make heaps-world
17
- make # ( make build && make install)
17
+ make # make build && make install
18
18
```
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments