Browse Source

Updates to README and CMakeLists

Kim Laine 5 years ago
parent
commit
057bc372d3
2 changed files with 5 additions and 7 deletions
  1. 3 5
      CMakeLists.txt
  2. 2 2
      README.md

+ 3 - 5
CMakeLists.txt

@@ -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)
 
@@ -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
 )

+ 2 - 2
README.md

@@ -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