Image-encryption icon indicating copy to clipboard operation
Image-encryption copied to clipboard

g++: error: pkg-config --cflags --libs opencv: No such file or directory

Open DoSeek opened this issue 4 years ago • 0 comments

use bellow command build: $ g++ -o encryption encryption.cpp 'pkg-config opencv --cflags --libs' g++: error: pkg-config --cflags --libs opencv: No such file or directory

but change "apostrophe(')" in command as "back quote()", then build success, as: $ g++ -o encryption encryption.cpp pkg-config opencv --cflags --libs`

DoSeek avatar Jan 08 '21 09:01 DoSeek