Skip to content
Snippets Groups Projects

Add wraps for all dependencies

Merged Nicolas Werner requested to merge wraps into master
+ 3
3
@@ -38,13 +38,13 @@ libevent_options = cmake.subproject_options()
@@ -38,13 +38,13 @@ libevent_options = cmake.subproject_options()
if target_machine.system() == 'windows'
if target_machine.system() == 'windows'
# the cmake project links the thread support into the library directly...
# the cmake project links the thread support into the library directly...
libevent_pthreads_dep = dependency('', required : false)
libevent_threads_dep = dependency('', required : false)
else
else
libevent_pthreads_dep = libevent_proj.dependency('event_pthreads_static')
libevent_threads_dep = libevent_proj.dependency('event_pthreads_static')
endif
endif
endif
endif
deps += [libevent_dep, libevent_pthreads_dep]
deps += [libevent_dep, libevent_threads_dep]
include = include_directories('include')
include = include_directories('include')
Loading