File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.10)
22
3- set (BUILD_VERSION 1.0.1.1 )
3+ set (BUILD_VERSION 1.0.1.2 )
44
55project (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
4444if (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
You can’t perform that action at this time.
0 commit comments