Skip to content

Commit 35f7eab

Browse files
committed
Fixed dist_slick_queue might cause third-party dependency installation error in release build
1 parent c0242af commit 35f7eab

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v1.0.1.2 - 2025-09-23
2+
- Fixed dist_slick_queue might cause third-party dependency installation error in release build
3+
14
# v1.0.1.1 - 2025-09-20
25
- Add WIN32_LEAN_AND_MEAN
36

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.10)
22

3-
set(BUILD_VERSION 1.0.1.1)
3+
set(BUILD_VERSION 1.0.1.2)
44

55
project(slick_queue
66
VERSION ${BUILD_VERSION}
@@ -43,8 +43,8 @@ message(STATUS "Build version: ${BUILD_VERSION}")
4343
# Automatically run install after build in Release mode
4444
if(CMAKE_BUILD_TYPE STREQUAL "Release")
4545
add_custom_target(dist_slick_queue ALL
46-
COMMAND ${CMAKE_COMMAND} --install ${CMAKE_BINARY_DIR} --prefix ${CMAKE_BINARY_DIR}/dist
47-
COMMENT "Create distribution after release build"
46+
COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_CURRENT_SOURCE_DIR}/include ${CMAKE_BINARY_DIR}/dist/include
47+
COMMENT "Copying slick_queue headers to dist/include"
4848
VERBATIM
4949
)
5050

0 commit comments

Comments
 (0)