Use native WebRTC library with Windows VisualStudio/Visual C++ 2017











up vote
0
down vote

favorite












I am new to WebRTC, and I started with installing the ready-to-use library package available at Sourcey.



Using VS2017 I created a simple "hello world" console application which includes one of the webrtc native API headers.



I added the additional include path (Project config > C++ > general > add. include) and link path (Project config > Linker > add. library path).



But I got a lot of compile errors: from them I dreived that the Windows platform was not recognised, and it tried to include Unix* Headers like instead. So first fix was to add WEBRTC_WIN to the preprocessor symbols.



Still I got many (1076) other errors, mostly dubious, e.g. complaining about '::' in std::numeric_limits<int>::max() .



Second fix: I added #define NOMINMAX in my source file. It seems that Windows usually defines macros min() and max() which corrupt the c++ code.



So now 2 errors, complaining about _vsnwprintf() function maybe being not safe. As it recommended I set _CRT_SECURE_NO_WARNINGS but had to do this in the project configuration, it was not enough to set it in the source file including!



Lack of documentation on these problems with the native WebRTC libs is really annoying! Also not in the forum Google discuss webrtc. More user experiences? Tipps?



Edit: I found a nice tutorial which discourages directly using Native API and instead recommends using QT Wrapper: Tutorial










share|improve this question




















  • 1




    It would be helpful to see the exact error messages.
    – drescherjm
    Nov 21 at 16:55












  • @drescherjm: I added more info. I removed asking for documentation.
    – karsten
    Nov 22 at 10:55










  • I found some more information: current state link Cmake installer link. Cmake description link
    – karsten
    Nov 23 at 20:00

















up vote
0
down vote

favorite












I am new to WebRTC, and I started with installing the ready-to-use library package available at Sourcey.



Using VS2017 I created a simple "hello world" console application which includes one of the webrtc native API headers.



I added the additional include path (Project config > C++ > general > add. include) and link path (Project config > Linker > add. library path).



But I got a lot of compile errors: from them I dreived that the Windows platform was not recognised, and it tried to include Unix* Headers like instead. So first fix was to add WEBRTC_WIN to the preprocessor symbols.



Still I got many (1076) other errors, mostly dubious, e.g. complaining about '::' in std::numeric_limits<int>::max() .



Second fix: I added #define NOMINMAX in my source file. It seems that Windows usually defines macros min() and max() which corrupt the c++ code.



So now 2 errors, complaining about _vsnwprintf() function maybe being not safe. As it recommended I set _CRT_SECURE_NO_WARNINGS but had to do this in the project configuration, it was not enough to set it in the source file including!



Lack of documentation on these problems with the native WebRTC libs is really annoying! Also not in the forum Google discuss webrtc. More user experiences? Tipps?



Edit: I found a nice tutorial which discourages directly using Native API and instead recommends using QT Wrapper: Tutorial










share|improve this question




















  • 1




    It would be helpful to see the exact error messages.
    – drescherjm
    Nov 21 at 16:55












  • @drescherjm: I added more info. I removed asking for documentation.
    – karsten
    Nov 22 at 10:55










  • I found some more information: current state link Cmake installer link. Cmake description link
    – karsten
    Nov 23 at 20:00















up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am new to WebRTC, and I started with installing the ready-to-use library package available at Sourcey.



Using VS2017 I created a simple "hello world" console application which includes one of the webrtc native API headers.



I added the additional include path (Project config > C++ > general > add. include) and link path (Project config > Linker > add. library path).



But I got a lot of compile errors: from them I dreived that the Windows platform was not recognised, and it tried to include Unix* Headers like instead. So first fix was to add WEBRTC_WIN to the preprocessor symbols.



Still I got many (1076) other errors, mostly dubious, e.g. complaining about '::' in std::numeric_limits<int>::max() .



Second fix: I added #define NOMINMAX in my source file. It seems that Windows usually defines macros min() and max() which corrupt the c++ code.



So now 2 errors, complaining about _vsnwprintf() function maybe being not safe. As it recommended I set _CRT_SECURE_NO_WARNINGS but had to do this in the project configuration, it was not enough to set it in the source file including!



Lack of documentation on these problems with the native WebRTC libs is really annoying! Also not in the forum Google discuss webrtc. More user experiences? Tipps?



Edit: I found a nice tutorial which discourages directly using Native API and instead recommends using QT Wrapper: Tutorial










share|improve this question















I am new to WebRTC, and I started with installing the ready-to-use library package available at Sourcey.



Using VS2017 I created a simple "hello world" console application which includes one of the webrtc native API headers.



I added the additional include path (Project config > C++ > general > add. include) and link path (Project config > Linker > add. library path).



But I got a lot of compile errors: from them I dreived that the Windows platform was not recognised, and it tried to include Unix* Headers like instead. So first fix was to add WEBRTC_WIN to the preprocessor symbols.



Still I got many (1076) other errors, mostly dubious, e.g. complaining about '::' in std::numeric_limits<int>::max() .



Second fix: I added #define NOMINMAX in my source file. It seems that Windows usually defines macros min() and max() which corrupt the c++ code.



So now 2 errors, complaining about _vsnwprintf() function maybe being not safe. As it recommended I set _CRT_SECURE_NO_WARNINGS but had to do this in the project configuration, it was not enough to set it in the source file including!



Lack of documentation on these problems with the native WebRTC libs is really annoying! Also not in the forum Google discuss webrtc. More user experiences? Tipps?



Edit: I found a nice tutorial which discourages directly using Native API and instead recommends using QT Wrapper: Tutorial







c++ windows visual-studio webrtc native






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 22 at 11:27

























asked Nov 21 at 16:29









karsten

33716




33716








  • 1




    It would be helpful to see the exact error messages.
    – drescherjm
    Nov 21 at 16:55












  • @drescherjm: I added more info. I removed asking for documentation.
    – karsten
    Nov 22 at 10:55










  • I found some more information: current state link Cmake installer link. Cmake description link
    – karsten
    Nov 23 at 20:00
















  • 1




    It would be helpful to see the exact error messages.
    – drescherjm
    Nov 21 at 16:55












  • @drescherjm: I added more info. I removed asking for documentation.
    – karsten
    Nov 22 at 10:55










  • I found some more information: current state link Cmake installer link. Cmake description link
    – karsten
    Nov 23 at 20:00










1




1




It would be helpful to see the exact error messages.
– drescherjm
Nov 21 at 16:55






It would be helpful to see the exact error messages.
– drescherjm
Nov 21 at 16:55














@drescherjm: I added more info. I removed asking for documentation.
– karsten
Nov 22 at 10:55




@drescherjm: I added more info. I removed asking for documentation.
– karsten
Nov 22 at 10:55












I found some more information: current state link Cmake installer link. Cmake description link
– karsten
Nov 23 at 20:00






I found some more information: current state link Cmake installer link. Cmake description link
– karsten
Nov 23 at 20:00



















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53416549%2fuse-native-webrtc-library-with-windows-visualstudio-visual-c-2017%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53416549%2fuse-native-webrtc-library-with-windows-visualstudio-visual-c-2017%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks