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 @@ -109,11 +109,6 @@ target_include_directories(dispatch
109
109
${CMAKE_SOURCE_DIR}
110
110
${CMAKE_CURRENT_SOURCE_DIR}
111
111
${CMAKE_SOURCE_DIR} /private )
112
- if (WITH_PTHREAD_WORKQUEUES )
113
- target_include_directories (dispatch
114
- SYSTEM BEFORE PRIVATE
115
- "${WITH_PTHREAD_WORKQUEUES} /include" )
116
- endif ()
117
112
if (WITH_BLOCKS_RUNTIME )
118
113
target_include_directories (dispatch
119
114
SYSTEM BEFORE PRIVATE
@@ -164,9 +159,6 @@ if(BSD_OVERLAY_FOUND)
164
159
target_link_libraries (dispatch PRIVATE ${BSD_OVERLAY_LDFLAGS} )
165
160
endif ()
166
161
target_link_libraries (dispatch PRIVATE Threads::Threads )
167
- if (WITH_PTHREAD_WORKQUEUES )
168
- target_link_libraries (dispatch PRIVATE PTHREAD::workqueue )
169
- endif ()
170
162
if (WITH_BLOCKS_RUNTIME )
171
163
target_link_libraries (dispatch PRIVATE BlocksRuntime )
172
164
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