File tree Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -119,11 +119,6 @@ target_include_directories(dispatch
119
119
${CMAKE_CURRENT_SOURCE_DIR}
120
120
${CMAKE_CURRENT_BINARY_DIR}
121
121
${CMAKE_SOURCE_DIR} /private )
122
- if (WITH_PTHREAD_WORKQUEUES )
123
- target_include_directories (dispatch
124
- SYSTEM BEFORE PRIVATE
125
- "${WITH_PTHREAD_WORKQUEUES} /include" )
126
- endif ()
127
122
if (WITH_BLOCKS_RUNTIME )
128
123
target_include_directories (dispatch
129
124
SYSTEM BEFORE PRIVATE
@@ -174,9 +169,6 @@ if(BSD_OVERLAY_FOUND)
174
169
target_link_libraries (dispatch PRIVATE ${BSD_OVERLAY_LDFLAGS} )
175
170
endif ()
176
171
target_link_libraries (dispatch PRIVATE Threads::Threads )
177
- if (WITH_PTHREAD_WORKQUEUES )
178
- target_link_libraries (dispatch PRIVATE PTHREAD::workqueue )
179
- endif ()
180
172
if (WITH_BLOCKS_RUNTIME )
181
173
target_link_libraries (dispatch PRIVATE BlocksRuntime )
182
174
endif ()
Original file line number Diff line number Diff line change @@ -60,11 +60,6 @@ function(add_unit_test name)
60
60
SYSTEM BEFORE PRIVATE
61
61
"${WITH_BLOCKS_RUNTIME} " )
62
62
endif ()
63
- if (WITH_PTHREAD_WORKQUEUES )
64
- target_include_directories (${name}
65
- SYSTEM BEFORE PRIVATE
66
- "${WITH_PTHREAD_WORKQUEUES} /include" )
67
- endif ()
68
63
if (BSD_OVERLAY_FOUND )
69
64
target_compile_options (${name}
70
65
PRIVATE
@@ -74,9 +69,6 @@ function(add_unit_test name)
74
69
# TODO(compnerd) make this portable
75
70
target_compile_options (${name} PRIVATE -Wall -Wno-deprecated-declarations )
76
71
target_link_libraries (${name} PRIVATE dispatch Threads::Threads )
77
- if (WITH_PTHREAD_WORKQUEUES )
78
- target_link_libraries (${name} PRIVATE PTHREAD::workqueue )
79
- endif ()
80
72
if (WITH_BLOCKS_RUNTIME )
81
73
target_link_libraries (${name} PRIVATE BlocksRuntime )
82
74
endif ()
You can’t perform that action at this time.
0 commit comments