Skip to content

Commit

Permalink
Version 3.7.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wei Dai committed Nov 12, 2021
1 parent c1cf3ba commit 7923472
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if(NOT CMAKE_BUILD_TYPE)
endif()
message(STATUS "Build type (CMAKE_BUILD_TYPE): ${CMAKE_BUILD_TYPE}")

project(SEAL VERSION 3.7.1 LANGUAGES CXX C)
project(SEAL VERSION 3.7.2 LANGUAGES CXX C)

########################
# Global configuration #
Expand Down
4 changes: 2 additions & 2 deletions native/bench/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

cmake_minimum_required(VERSION 3.13)

project(SEALBench VERSION 3.7.1 LANGUAGES CXX)
project(SEALBench VERSION 3.7.2 LANGUAGES CXX)

# If not called from root CMakeLists.txt
if(NOT DEFINED SEAL_BUILD_BENCH)
set(SEAL_BUILD_BENCH ON)

# Import Microsoft SEAL
find_package(SEAL 3.7.1 EXACT REQUIRED)
find_package(SEAL 3.7.2 EXACT REQUIRED)

# Must define these variables and include macros
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${OUTLIB_PATH})
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,14 +3,14 @@

cmake_minimum_required(VERSION 3.13)

project(SEALExamples VERSION 3.7.1 LANGUAGES CXX)
project(SEALExamples VERSION 3.7.2 LANGUAGES CXX)

# If not called from root CMakeLists.txt
if(NOT DEFINED SEAL_BUILD_EXAMPLES)
set(SEAL_BUILD_EXAMPLES ON)

# Import Microsoft SEAL
find_package(SEAL 3.7.1 EXACT REQUIRED)
find_package(SEAL 3.7.2 EXACT REQUIRED)

set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin)
endif()
Expand Down
4 changes: 2 additions & 2 deletions native/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

cmake_minimum_required(VERSION 3.13)

project(SEALTest VERSION 3.7.1 LANGUAGES CXX C)
project(SEALTest VERSION 3.7.2 LANGUAGES CXX C)

# If not called from root CMakeLists.txt
if(NOT DEFINED SEAL_BUILD_TESTS)
set(SEAL_BUILD_TESTS ON)

# Import Microsoft SEAL
find_package(SEAL 3.7.1 EXACT REQUIRED)
find_package(SEAL 3.7.2 EXACT REQUIRED)

# Must define these variables and include macros
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${OUTLIB_PATH})
Expand Down

0 comments on commit 7923472

Please sign in to comment.