mirror of
https://github.com/NekoX-Dev/NekoX.git
synced 2025-01-09 06:35:16 +01:00
Fix incompatibility with Gradle plugin on Windows.
When run on Windows, the shell does not handle the argument quoting and this is seen by gradle as `'-DVERSION="1.3.1"'` rather than as `-DVERSION="1.3.1"`, which gradle wrongly interprets as a source file.
This commit is contained in:
parent
75d782181e
commit
0dfa1e9bf2
@ -332,7 +332,7 @@ include $(BUILD_STATIC_LIBRARY)
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_CPPFLAGS := -frtti
|
||||
LOCAL_CFLAGS += '-DVERSION="1.3.1"' -DFLAC__NO_MD5 -DFLAC__INTEGER_ONLY_LIBRARY -DFLAC__NO_ASM
|
||||
LOCAL_CFLAGS += -DVERSION="1.3.1" -DFLAC__NO_MD5 -DFLAC__INTEGER_ONLY_LIBRARY -DFLAC__NO_ASM
|
||||
LOCAL_CFLAGS += -D_REENTRANT -DPIC -DU_COMMON_IMPLEMENTATION -fPIC -DHAVE_SYS_PARAM_H
|
||||
LOCAL_CFLAGS += -O3 -funroll-loops -finline-functions
|
||||
LOCAL_LDLIBS := -lz -lm
|
||||
|
Loading…
Reference in New Issue
Block a user