aboutsummaryrefslogtreecommitdiff
path: root/ports/pthreads/CMakeLists.txt
blob: 7ae6bcc342ca2e7228d2dbfef3abe532fdf6c264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
cmake_minimum_required(VERSION 3.9.0)

project(pthreads)

set(PTHREAD_PUBLIC_HEADERS pthread.h sched.h semaphore.h)

set(PTHREAD_SHARED_SOURCES
  autostatic.c
  barrier.c
  cancel.c
  cleanup.c
  condvar.c
  create.c
  dll.c
  errno.c
  exit.c
  fork.c
  global.c
  misc.c
  mutex.c
  nonportable.c
  private.c
  rwlock.c
  sched.c
  semaphore.c
  signal.c
  spin.c
  sync.c
  tsd.c
  attr.C
)
set(PTHREAD_STATIC_SOURCES
  autostatic.c
  cleanup.c
  create.c
  dll.c
  errno.c
  fork.c
  global.c
  pthread_attr_destroy.c
  pthread_attr_getdetachstate.c
  pthread_attr_getinheritsched.c
  pthread_attr_getschedparam.c
  pthread_attr_getschedpolicy.c
  pthread_attr_getscope.c
  pthread_attr_getstackaddr.c
  pthread_attr_getstacksize.c
  pthread_attr_init.c
  pthread_attr_setdetachstate.c
  pthread_attr_setinheritsched.c
  pthread_attr_setschedparam.c
  pthread_attr_setschedpolicy.c
  pthread_attr_setscope.c
  pthread_attr_setstackaddr.c
  pthread_attr_setstacksize.c
  pthread_barrier_destroy.c
  pthread_barrier_init.c
  pthread_barrier_wait.c
  pthread_barrierattr_destroy.c
  pthread_barrierattr_getpshared.c
  pthread_barrierattr_init.c
  pthread_barrierattr_setpshared.c
  pthread_cancel.c
  pthread_cond_destroy.c
  pthread_cond_init.c
  pthread_cond_signal.c
  pthread_cond_wait.c
  pthread_condattr_destroy.c
  pthread_condattr_getpshared.c
  pthread_condattr_init.c
  pthread_condattr_setpshared.c
  pthread_delay_np.c
  pthread_detach.c
  pthread_equal.c
  pthread_exit.c
  pthread_getconcurrency.c
  pthread_getschedparam.c
  pthread_getspecific.c
  pthread_getunique_np.c
  pthread_getw32threadhandle_np.c
  pthread_join.c
  pthread_key_create.c
  pthread_key_delete.c
  pthread_kill.c
  pthread_mutex_consistent.c
  pthread_mutex_destroy.c
  pthread_mutex_init.c
  pthread_mutex_lock.c
  pthread_mutex_timedlock.c
  pthread_mutex_trylock.c
  pthread_mutex_unlock.c
  pthread_mutexattr_destroy.c
  pthread_mutexattr_getkind_np.c
  pthread_mutexattr_getpshared.c
  pthread_mutexattr_getrobust.c
  pthread_mutexattr_gettype.c
  pthread_mutexattr_init.c
  pthread_mutexattr_setkind_np.c
  pthread_mutexattr_setpshared.c
  pthread_mutexattr_setrobust.c
  pthread_mutexattr_settype.c
  pthread_num_processors_np.c
  pthread_once.c
  pthread_rwlock_destroy.c
  pthread_rwlock_init.c
  pthread_rwlock_rdlock.c
  pthread_rwlock_tryrdlock.c
  pthread_rwlock_trywrlock.c
  pthread_rwlock_unlock.c
  pthread_rwlock_wrlock.c
  pthread_rwlockattr_destroy.c
  pthread_rwlockattr_getpshared.c
  pthread_rwlockattr_init.c
  pthread_rwlockattr_setpshared.c
  pthread_self.c
  pthread_setcancelstate.c
  pthread_setcanceltype.c
  pthread_setconcurrency.c
  pthread_setschedparam.c
  pthread_setspecific.c
  pthread_spin_destroy.c
  pthread_spin_init.c
  pthread_spin_lock.c
  pthread_spin_trylock.c
  pthread_spin_unlock.c
  pthread_testcancel.c
  pthread_timechange_handler_np.c
  pthread_win32_attach_detach_np.c
  ptw32_calloc.c
  ptw32_callUserDestroyRoutines.c
  ptw32_cond_check_need_init.c
  ptw32_getprocessors.c
  ptw32_is_attr.c
  ptw32_MCS_lock.c
  ptw32_mutex_check_need_init.c
  ptw32_new.c
  ptw32_processInitialize.c
  ptw32_processTerminate.c
  ptw32_relmillisecs.c
  ptw32_reuse.c
  ptw32_rwlock_check_need_init.c
  ptw32_semwait.c
  ptw32_spinlock_check_need_init.c
  ptw32_threadDestroy.c
  ptw32_threadStart.c
  ptw32_throw.c
  ptw32_timespec.c
  ptw32_tkAssocCreate.c
  ptw32_tkAssocDestroy.c
  sched_get_priority_max.c
  sched_get_priority_min.c
  sched_getscheduler.c
  sched_setscheduler.c
  sched_yield.c
  sem_close.c
  sem_destroy.c
  sem_getvalue.c
  sem_init.c
  sem_open.c
  sem_post_multiple.c
  sem_post.c
  sem_timedwait.c
  sem_trywait.c
  sem_unlink.c
  sem_wait.c
  signal.c
  w32_CancelableWait.c
)



option(PTW32_ARCH  "x32")
add_definitions(-DPTW32_ARCH=${PTW32_ARCH} -DPTW32_RC_MSC -DHAVE_PTW32_CONFIG_H -D_TIMESPEC_DEFINED)

if(BUILD_SHARED_LIBS)
  set(PTHREAD_SOURCES  ${PTHREAD_SHARED_SOURCES})
  add_definitions(-DPTW32_BUILD)
else()
  set(PTHREAD_SOURCES  ${PTHREAD_STATIC_SOURCES})
  add_definitions(-DPTW32_STATIC_LIB)
endif()


if(PTHREADS_BUILD_CPP)
  set(PTHREADS_EXCEPTION_SCHEME CE)
  add_definitions(/__CLEANUP_CXX)
elseif(PTHREADS_BUILD_SEH)
  set(PTHREADS_EXCEPTION_SCHEME SE)
  add_definitions(/__CLEANUP_SEH)
else()
  set(PTHREADS_EXCEPTION_SCHEME C)
endif()

set(PTHREADS_COMPATIBILITY_VERSION 2)
set(CMAKE_DEBUG_POSTFIX d)
set(PTHREADS_COMPILER V)

set(PTHREADS_LIBRARY "pthreads${PTHREADS_COMPILER}${PTHREADS_EXCEPTION_SCHEME}${PTHREADS_COMPATIBILITY_VERSION}")

include_directories(.)

add_library(${PTHREADS_LIBRARY} ${PTHREAD_SOURCES})

install(
  TARGETS  ${PTHREADS_LIBRARY}
  RUNTIME DESTINATION bin
  LIBRARY DESTINATION lib
  ARCHIVE DESTINATION lib
)

if(NOT DISABLE_INSTALL_HEADERS)
  install(FILES ${PTHREAD_PUBLIC_HEADERS} DESTINATION include)
endif()