-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: missing opencv4 in PKGCONFIG array #81
base: master
Are you sure you want to change the base?
Conversation
This populates necessary `-I` flags properly and fixes the following build failure on Arch: ``` In file included from utils/scrollScreenshot.h:23, from main_window.h:24, from main_window.cpp:24: utils/pixmergethread.h:31:9: fatal error: opencv2/opencv.hpp: No such file or directory 31 | #include<opencv2/opencv.hpp> | ^~~~~~~~~~~~~~~~~~~~ compilation terminated. In file included from utils/scrollScreenshot.h:23, from main_window.h:24, from main.cpp:24: utils/pixmergethread.h:31:9: fatal error: opencv2/opencv.hpp: No such file or directory 31 | #include<opencv2/opencv.hpp> | ^~~~~~~~~~~~~~~~~~~~ compilation terminated. make[1]: *** [Makefile:1888: main_window.o] Error 1 ```
chore: Sync by
CLA Assistant Lite bot All contributors have signed the CLA ✍️ ✅ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cppcheck Result
I'm Impressed!
sync by github workflow Log: none Influence: none
sync by github workflow Log: none Influence: none
sync by github workflow Log: none Influence: none
sync by github workflow Log: none Influence: none
Hello, the latest code has added opencv dependencies. Therefore, the current PR cannot be integrated into the main line. |
TAG Bot New tag: 5.12.14 |
TAG Bot New tag: 5.12.15 |
TAG Bot New tag: 5.12.16 |
TAG Bot New tag: 5.12.17 |
TAG Bot New tag: 5.12.18 |
TAG Bot New tag: 5.12.19 |
TAG Bot New tag: 6.0.3 |
TAG Bot New tag: 6.0.4 |
TAG Bot New tag: 6.0.5 |
TAG Bot New tag: 6.0.6 |
TAG Bot New tag: 6.0.7 |
TAG Bot New tag: 6.0.8 |
TAG Bot New tag: 6.0.9 |
TAG Bot New tag: 6.0.10 |
This populates necessary
-I
flags properly and fixes the following build failure on Arch: