Skip to content

Commit

Permalink
Updates to README and CMakeLists
Browse files Browse the repository at this point in the history
  • Loading branch information
kimlaine committed Feb 1, 2019
1 parent 8fb6ff7 commit 057bc37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.10)

project(SealPIR VERSION 1.1 LANGUAGES CXX)
project(SealPIR VERSION 2.0 LANGUAGES CXX)

set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin)

Expand All @@ -11,9 +11,7 @@ add_executable(sealpir
pir_server.cpp
)

find_package(SEAL 3.1.0 EXACT REQUIRED)
find_package(Threads REQUIRED)
find_package(SEAL 3.2.0 EXACT REQUIRED)

target_link_libraries(sealpir
SEAL::seal
target_link_libraries(sealpir SEAL::seal
)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ SealPIR is a (research) library and should not be used in production systems. Se

# Compiling SEAL

SealPIR depends on SEAL 2.3.1 ([link](http://sealcrypto.org)). Download SEAL, and follow the instructions in INSTALL.txt to install it system-wide.
SealPIR depends on Microsoft SEAL version 3.2 ([link](https://www.microsoft.com/en-us/research/project/simple-encrypted-arithmetic-library/)). Download Microsoft SEAL, and follow the instructions in README.md to install it system-wide.

# Compiling SealPIR

Once SEAL 2.3.1 is installed, to build SealPIR simply run:
Once Microsoft SEAL 3.2 is installed, to build SealPIR simply run:

cmake .
make
Expand Down

0 comments on commit 057bc37

Please sign in to comment.