-
-
Save sainisanjay/e15bf163c58a1cc8c3eb271d142edaa2 to your computer and use it in GitHub Desktop.
g++ Makefile for OpenCV Project
This file contains hidden or 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
CC = g++ | |
CFLAGS = -g -Wall | |
SRCS = HelloWorld.cpp | |
PROG = HelloWorld | |
OPENCV = `pkg-config opencv --cflags --libs` | |
LIBS = $(OPENCV) | |
$(PROG):$(SRCS) | |
$(CC) $(CFLAGS) -o $(PROG) $(SRCS) $(LIBS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment