We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89a74e0 commit a49bdafCopy full SHA for a49bdaf
CHANGELOG
@@ -1,5 +1,6 @@
1
# v1.2.1 - 2025-12-27
2
- 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
4
- Added release workflow
5
6
# v1.2.0 - 2025-12-19
CMakeLists.txt
@@ -21,11 +21,7 @@ endif()
21
option(BUILD_SLICK_QUEUE_TESTS "Build tests" ON)
22
if(BUILD_SLICK_QUEUE_TESTS)
23
enable_testing()
24
- if (WIN32)
25
- add_subdirectory(tests)
26
- else()
27
- add_subdirectory(tests EXCLUDE_FROM_ALL)
28
- endif()
+ add_subdirectory(tests)
29
endif()
30
31
# Installation rules
0 commit comments