Skip to content

Commit a49bdaf

Browse files
committed
remove EXCLUDE_FROM_ALL to fix linux CI test
1 parent 89a74e0 commit a49bdaf

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# v1.2.1 - 2025-12-27
22
- Fixed a race condition when multi-process trying to create the same shared memory segment
3+
- Fixed CTest integration by moving enable_testing() to root CMakeLists.txt and removing EXCLUDE_FROM_ALL
34
- Added release workflow
45

56
# v1.2.0 - 2025-12-19

CMakeLists.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,7 @@ endif()
2121
option(BUILD_SLICK_QUEUE_TESTS "Build tests" ON)
2222
if(BUILD_SLICK_QUEUE_TESTS)
2323
enable_testing()
24-
if (WIN32)
25-
add_subdirectory(tests)
26-
else()
27-
add_subdirectory(tests EXCLUDE_FROM_ALL)
28-
endif()
24+
add_subdirectory(tests)
2925
endif()
3026

3127
# Installation rules

0 commit comments

Comments
 (0)