Skip to content
Snippets Groups Projects
Verified Commit 24098c9f authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix library names in libevent wrap

parent 57a36bf9
No related branches found
No related tags found
1 merge request!2Add wraps for all dependencies
Pipeline #1306 failed
......@@ -10,10 +10,10 @@ p = mod.add_project('configure',
],
)
libevent_core_dep = p.dependency('libevent_core')
libevent_core_dep = p.dependency('event_core')
if target_machine.system() == 'windows'
libevent_windows_dep = p.dependency('libevent_pthreads')
libevent_windows_dep = p.dependency('event_pthreads')
else
libevent_pthreads_dep = p.dependency('libevent_pthreads')
libevent_pthreads_dep = p.dependency('event_pthreads')
endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment