.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
4,111 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Im using an iOS .a library and Im not sure what kind of code it contains, C++ or ?
So I tried the playing with the setting 'IsCxx' but nothing happens.
<ItemGroup>
<NativeReference Include="..\libraries\libxxxx.a">
<Kind>Static</Kind>
<Frameworks>Accelerate</Frameworks>
<!-- Specifies whether or not the native library is a C++ library. -->
<IsCxx>False</IsCxx>
<SmartLink>False</SmartLink>
<WeakFrameworks></WeakFrameworks>
<ForceLoad>True</ForceLoad>
<NeedsGccExceptionHandling>False</NeedsGccExceptionHandling>
...
So does IsCxx do anything in the context above, does it have performance gains or .... what does it do?
IOS native libraries are typically written in objective-c or swift with an objective-c wrapper. If the library is c++, it may require an additional initialization. The IsCxx adds this code.