JNI for test coverage #3965

hello darwin
This commit is contained in:
rusefillc 2022-02-26 18:20:57 -05:00
parent 6cbb602c08
commit af39ca9eba
1 changed files with 5 additions and 1 deletions

View File

@ -136,9 +136,13 @@ AOPT = -fPIC -I$(JAVA_HOME)/include
ifeq ($(OS),Windows_NT) ifeq ($(OS),Windows_NT)
AOPT += -I$(JAVA_HOME)/include/win32 AOPT += -I$(JAVA_HOME)/include/win32
else
ifeq ($(IS_MAC),yes)
AOPT += -I$(JAVA_HOME)/include/darwin
else else
AOPT += -I$(JAVA_HOME)/include/linux AOPT += -I$(JAVA_HOME)/include/linux
endif endif
endif
# Define C warning options here # Define C warning options here
CWARN = -Wall -Wextra -Wstrict-prototypes -pedantic -Wmissing-prototypes -Wold-style-definition CWARN = -Wall -Wextra -Wstrict-prototypes -pedantic -Wmissing-prototypes -Wold-style-definition