-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,299 changed files
with
517,724 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Cross-platform set of build steps for building esy projects | ||
|
||
steps: | ||
- task: NodeTool@0 | ||
inputs: | ||
versionSpec: '8.9' | ||
- script: git submodule update --init | ||
displayName: 'git submodule update --init' | ||
- script: npm install -g [email protected] | ||
displayName: 'npm install -g [email protected]' | ||
- script: esy install | ||
displayName: 'esy install' | ||
- script: esy build | ||
displayName: 'esy build' |
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,8 @@ | ||
# Declare shell files to have LF endings on checkout | ||
# On Windows, the default git setting for `core.autocrlf` | ||
# means that when checking out code, LF endings get converted | ||
# to CRLF. This causes problems for shell scripts, as bash | ||
# gets choked up on the extra `\r` character. | ||
*.sh text eol=lf | ||
configure eol=lf | ||
Makefile* eol=lf |
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 |
---|---|---|
|
@@ -59,3 +59,5 @@ typings/ | |
|
||
# next.js build output | ||
.next | ||
|
||
_esy/ |
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,132 @@ | ||
LOCAL_PATH := $(call my-dir) | ||
|
||
########################### | ||
# | ||
# SDL shared library | ||
# | ||
########################### | ||
|
||
include $(CLEAR_VARS) | ||
|
||
LOCAL_MODULE := SDL2 | ||
|
||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include | ||
|
||
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES) | ||
|
||
LOCAL_SRC_FILES := \ | ||
$(subst $(LOCAL_PATH)/,, \ | ||
$(wildcard $(LOCAL_PATH)/src/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/audio/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/audio/android/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/audio/dummy/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/audio/openslES/*.c) \ | ||
$(LOCAL_PATH)/src/atomic/SDL_atomic.c.arm \ | ||
$(LOCAL_PATH)/src/atomic/SDL_spinlock.c.arm \ | ||
$(wildcard $(LOCAL_PATH)/src/core/android/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/cpuinfo/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/dynapi/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/events/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/file/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/haptic/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/haptic/android/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/joystick/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/joystick/android/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/joystick/hidapi/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/loadso/dlopen/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/power/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/power/android/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/filesystem/android/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/sensor/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/sensor/android/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/render/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/render/*/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/stdlib/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/thread/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/thread/pthread/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/timer/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/timer/unix/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/video/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/video/android/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/video/yuv2rgb/*.c) \ | ||
$(wildcard $(LOCAL_PATH)/src/test/*.c)) | ||
|
||
LOCAL_SHARED_LIBRARIES := hidapi | ||
|
||
LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES | ||
LOCAL_CFLAGS += \ | ||
-Wall -Wextra \ | ||
-Wdocumentation \ | ||
-Wdocumentation-unknown-command \ | ||
-Wmissing-prototypes \ | ||
-Wunreachable-code-break \ | ||
-Wunneeded-internal-declaration \ | ||
-Wmissing-variable-declarations \ | ||
-Wfloat-conversion \ | ||
-Wshorten-64-to-32 \ | ||
-Wunreachable-code-return | ||
|
||
# Warnings we haven't fixed (yet) | ||
LOCAL_CFLAGS += -Wno-unused-parameter -Wno-sign-compare | ||
|
||
|
||
LOCAL_LDLIBS := -ldl -lGLESv1_CM -lGLESv2 -lOpenSLES -llog -landroid | ||
|
||
ifeq ($(NDK_DEBUG),1) | ||
cmd-strip := | ||
endif | ||
|
||
LOCAL_STATIC_LIBRARIES := cpufeatures | ||
|
||
include $(BUILD_SHARED_LIBRARY) | ||
|
||
########################### | ||
# | ||
# SDL static library | ||
# | ||
########################### | ||
|
||
LOCAL_MODULE := SDL2_static | ||
|
||
LOCAL_MODULE_FILENAME := libSDL2 | ||
|
||
LOCAL_LDLIBS := | ||
LOCAL_EXPORT_LDLIBS := -ldl -lGLESv1_CM -lGLESv2 -llog -landroid | ||
|
||
include $(BUILD_STATIC_LIBRARY) | ||
|
||
########################### | ||
# | ||
# SDL main static library | ||
# | ||
########################### | ||
|
||
include $(CLEAR_VARS) | ||
|
||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include | ||
|
||
LOCAL_MODULE := SDL2_main | ||
|
||
LOCAL_MODULE_FILENAME := libSDL2main | ||
|
||
include $(BUILD_STATIC_LIBRARY) | ||
|
||
########################### | ||
# | ||
# hidapi library | ||
# | ||
########################### | ||
|
||
include $(CLEAR_VARS) | ||
|
||
LOCAL_CPPFLAGS += -std=c++11 | ||
|
||
LOCAL_SRC_FILES := src/hidapi/android/hid.cpp | ||
|
||
LOCAL_MODULE := libhidapi | ||
LOCAL_LDLIBS := -llog | ||
|
||
include $(BUILD_SHARED_LIBRARY) | ||
|
||
$(call import-module,android/cpufeatures) | ||
|
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,16 @@ | ||
|
||
Bugs are now managed in the SDL bug tracker, here: | ||
|
||
https://bugzilla.libsdl.org/ | ||
|
||
You may report bugs there, and search to see if a given issue has already | ||
been reported, discussed, and maybe even fixed. | ||
|
||
|
||
You may also find help at the SDL forums/mailing list: | ||
|
||
https://discourse.libsdl.org/ | ||
|
||
Bug reports are welcome here, but we really appreciate if you use Bugzilla, as | ||
bugs discussed on the mailing list may be forgotten or missed. | ||
|
Oops, something went wrong.