Reputation: 21
I am trying to build the latest version of the Microsoft SEAL library on ubuntu but as given in the documentation on the GitHub page I'm able the make only sealexample and the sealtest executable file from it. I've to write a custom program using this library but can't figure out how to start with this.
I've tried using linking the library as seal/seal.h which is available in the code but it didn't work.
please suggest the solution for this.
Upvotes: 2
Views: 1111
Reputation: 876
You'll need to install SEAL according to the instructions in README.md
(sounds like you already did that). Then just create a new directory with your project source files, create a new CMakeLists.txt
similar to native/examples/CMakeLists.txt
, and run
cmake .
make
in your directory. For an example, see https://www.youtube.com/watch?v=7vJJMU2gMn4.
Upvotes: 1