Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ set( SPDLOG_BUILD_SHARED TRUE )
set( SPDLOG_INSTALL TRUE )
FetchContent_Declare( spdlog
GIT_REPOSITORY https://github.com/project8/spdlog.git
GIT_TAG v1.x_p8_r1
GIT_TAG v1.x_p8_r2
)
FetchContent_MakeAvailable( spdlog )
# if Scarab is being built as a submodule, the parent might need to know where to find spdlog
Expand Down
2 changes: 1 addition & 1 deletion ScarabConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ get_filename_component( Scarab_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH )

# Find the dependencies
include( CMakeFindDependencyMacro )
find_dependency( Boost 1.46 REQUIRED COMPONENTS @Scarab_BOOST_COMPONENTS@ )
find_dependency( Boost 1.70 REQUIRED COMPONENTS @Scarab_BOOST_COMPONENTS@ )

find_dependency( spdlog REQUIRED HINTS @spdlog_BINARY_DIR@ )
# For some reason the INTERFACE_LINK_LIBRARIES property of the scarab library, which should include spdlog::spdlog,
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3 14 2
3 14 3
10 changes: 9 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,15 @@ Types of changes: Added, Changed, Deprecated, Removed, Fixed, Security
## [Unreleased]


## [3.14.2] - 2026-02-??
## [3.14.3] - 2026-03-10

### Fixed

- Boost min required version in CMake config file set to v1.70.0
- Updated spdlog tag to v1.x_p8_r2


## [3.14.2] - 2026-02-27

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion cmake/PackageBuilderMacros.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ function( pbuilder_add_library )

# this will set the INTERFACE_INCLUDE_DIRECTORIES property using the INTERFACE option
# it's assumed that the include_directories() command was used to set the INCLUDE_DIRECTORIES property for the private side.
target_include_directories( ${FULL_LIB_TARGET}
target_include_directories( ${FULL_LIB_TARGET} BEFORE
INTERFACE
"$<BUILD_INTERFACE:${SOURCE_TREE_INCLUDE_DIRS}>"
"$<INSTALL_INTERFACE:${TOP_PROJECT_INCLUDE_INSTALL_SUBDIR}${SM_INCLUDE_SUBDIR}>"
Expand Down