Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
- Fix build with new Boots 1.78, elevating min C++ standard to 14
- Fix catch2 issues by upgrading
  • Loading branch information
tamasmeszaros committed Nov 16, 2022
1 parent 4b5e570 commit ad29d99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.1)

project(Libnest2D)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED)

# Add our own cmake module path.
Expand Down
4 changes: 2 additions & 2 deletions external/+Catch2/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

rp_add_cmake_project(Catch2
URL "https://github.com/catchorg/Catch2/archive/v2.9.1.tar.gz"
URL_HASH SHA256=0b36488aca6265e7be14da2c2d0c748b4ddb9c70a1ea4da75736699c629f14ac
URL "https://github.com/catchorg/Catch2/archive/refs/tags/v2.13.10.zip"
URL_HASH SHA256=121e7488912c2ce887bfe4699ebfb983d0f2e0d68bcd60434cdfd6bb0cf78b43
CMAKE_ARGS
-DCATCH_INSTALL_DOCS=OFF
-DCATCH_BUILD_TESTING=OFF
Expand Down

0 comments on commit ad29d99

Please sign in to comment.