Skip to content

Commit

Permalink
Changed version to 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kimlaine committed Aug 27, 2019
1 parent 4df00c1 commit ba4379b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dotnet/native/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

cmake_minimum_required(VERSION 3.10)

project(SEALNetNative VERSION 3.2.1 LANGUAGES CXX C)
project(SEALNetNative VERSION 3.2.2 LANGUAGES CXX C)

# Library will be in ../lib
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/../lib)
Expand All @@ -12,7 +12,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/../lib)
add_library(sealnetnative SHARED "")

# Import Microsoft SEAL
find_package(SEAL 3.2.1 EXACT REQUIRED)
find_package(SEAL 3.2.2 EXACT REQUIRED)

# Check that Microsoft SEAL is build as position-independent code
if (SEAL_LIB_BUILD_TYPE STREQUAL "Static")
Expand Down
4 changes: 2 additions & 2 deletions native/examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@

cmake_minimum_required(VERSION 3.10)

project(SEALExamples VERSION 3.2.1 LANGUAGES CXX)
project(SEALExamples VERSION 3.2.2 LANGUAGES CXX)

# Executable will be in ../bin
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/../bin)

add_executable(sealexamples examples.cpp)

# Import Microsoft SEAL
find_package(SEAL 3.2.1 EXACT REQUIRED)
find_package(SEAL 3.2.2 EXACT REQUIRED)

# Link Microsoft SEAL
target_link_libraries(sealexamples SEAL::seal)
2 changes: 1 addition & 1 deletion native/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

cmake_minimum_required(VERSION 3.10)

project(SEAL VERSION 3.2.1 LANGUAGES CXX C)
project(SEAL VERSION 3.2.2 LANGUAGES CXX C)

if(DEFINED MSVC)
if(DEFINED ALLOW_COMMAND_LINE_BUILD)
Expand Down
2 changes: 1 addition & 1 deletion native/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/../bin)
add_executable(sealtest seal/testrunner.cpp)

# Import Microsoft SEAL
find_package(SEAL 3.2.1 EXACT REQUIRED)
find_package(SEAL 3.2.2 EXACT REQUIRED)

if(SEAL_ENFORCE_HE_STD_SECURITY)
message(FATAL_ERROR "Microsoft SEAL is configured with SEAL_ENFORCE_HE_STD_SECURITY which is incompatible with unit tests")
Expand Down

0 comments on commit ba4379b

Please sign in to comment.