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 d3b65e0 commit 9326083Copy full SHA for 9326083
1 file changed
CMakeLists.txt
@@ -1,14 +1,14 @@
1
cmake_minimum_required(VERSION 3.10)
2
3
project(slick-queue
4
- VERSION 1.4.0
+ VERSION 1.4.1
5
DESCRIPTION "A C++ Lock-Free MPMC queue"
6
LANGUAGES CXX)
7
8
set(CMAKE_CXX_STANDARD 20)
9
10
# Options:
11
-option(BUILD_SLICK_QUEUE_TESTS "Build tests" ON)
+option(BUILD_SLICK_QUEUE_TESTS "Build tests" ${PROJECT_IS_TOP_LEVEL})
12
13
find_package(slick-shm CONFIG QUIET)
14
@@ -45,20 +45,6 @@ if(UNIX AND NOT APPLE)
45
target_link_libraries(slick-queue INTERFACE rt atomic)
46
endif()
47
48
-target_precompile_headers(slick-queue INTERFACE
49
- <cstdint>
50
- <cstddef>
51
- <atomic>
52
- <stdexcept>
53
- <string>
54
- <cassert>
55
- <thread>
56
- <chrono>
57
- <limits>
58
- <new>
59
-)
60
-
61
62
if(BUILD_SLICK_QUEUE_TESTS)
63
enable_testing()
64
add_subdirectory(tests)
0 commit comments