First commit.

This commit is contained in:
2015-10-15 17:50:22 -04:30
commit 7328307104
27 changed files with 1808 additions and 0 deletions

15
desktop/jni/Makefile Executable file
View File

@@ -0,0 +1,15 @@
TARGET = ../libevi_10.so
OBJECTS = cv_proc.o marker.o decode.o calib.o
JNIINC = /usr/lib/jvm/java-7-openjdk-amd64/include/
CXXFLAGS = -I$(JNIINC) `pkg-config --cflags opencv` -O3 -DDESKTOP -DNDEBUG -fPIC
LDLIBS = `pkg-config --libs opencv`
all: $(TARGET)
$(TARGET): $(OBJECTS)
g++ -o $(TARGET) -shared $(OBJECTS) $(CXXFLAGS) $(LDLIBS)
%o: %cpp
clean:
$(RM) $(TARGET) $(OBJECTS)