Skip to content
Snippets Groups Projects
Commit 8abb7a04 authored by Io Daza-Dillon's avatar Io Daza-Dillon
Browse files

nodejs: fix libjami linking and ConversationPreferencesUpdated binding

Change-Id: I3a444c818210fbdb3c5873fea63fc75af5101b44
parent d570b2b3
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
"target_name": "jamid",
"sources": [ "jami_wrapper.cpp" ],
'include_dirs': ['../../src/'],
'libraries': ['-L<(module_root_dir)/../../src/.libs', '-lring'],
'libraries': ['-L<(module_root_dir)/../../src/.libs', '-ljami'],
'cflags!': [ '-fno-exceptions' ],
'cflags_cc!': [ '-fno-exceptions', '-fno-rtti', '-std=gnu++1y' ],
'cflags_cc': [ '-std=gnu++17' ]
......
......@@ -156,7 +156,7 @@ void init(const SWIGV8_VALUE& funcMap){
exportable_callback<ConversationSignal::ConversationRemoved>(bind(&conversationRemoved, _1, _2)),
exportable_callback<ConversationSignal::ConversationMemberEvent>(bind(&conversationMemberEvent, _1, _2, _3, _4)),
exportable_callback<ConversationSignal::OnConversationError>(bind(&onConversationError, _1, _2, _3, _4)),
exportable_callback<ConversationSignal::ConversationPreferencesUpdated>(bind(&ConversationCallback::conversationPreferencesUpdated, convM, _1, _2, _3))
exportable_callback<ConversationSignal::ConversationPreferencesUpdated>(bind(&conversationPreferencesUpdated, _1, _2, _3))
};
if (!DRing::init(static_cast<DRing::InitFlag>(DRing::DRING_FLAG_DEBUG)))
......
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