-
Notifications
You must be signed in to change notification settings - Fork 712
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
Build Problems when Upgrading from v3.5.9 to v3.6.0 #242
Comments
I use Fedora 33 OS and CLion for C++ development. Here is a minimal example project with a CMakeList.txt file to demonstrate the problem. Just build with the defined v3.5.9 and then rebuild it with v3.6.0. |
Thanks for reporting this! The causes of your issues 1. and 2. are totally independent.
Thanks again for the detailed bug report! |
Thanks for pointing out the difference between I've noticed some differences between v3.5.9. and v3.6.0 regarding built libraries:
|
Just pushed out a new hotfix to address the issue with |
All the build related problems are gone. |
In my CMakeList.txt I import SEAL v3.5.9 using:
It is being downloaded into <my_project_path>/cmake-build-debug/_deps/ with the sub folders seal-build, seal-src and seal-subbuild. I can bind it to my project using:
After that SEAL is being built in seal-src on the first run and I can just import the library with
#include <seal/seal.h>
in my project. The problems start when I get v3.6.0, for some reason:#include <seal/seal.h>
isn't being found anymore.I guess this behavior has something to do with the changes made to SEALs CMakeLists.txt file in v3.6.0, but I can't figure out what is causing this behavior that brakes my project.
The text was updated successfully, but these errors were encountered: