Tagged Questions
4
votes
6answers
285 views
Developing for different platforms individually, does anyone recommend it?
I know it is easy to recommend several cross platform libraries.
However, are there benefits to treating each platform individually for your product?
Yes there will be some base libraries used in ...
3
votes
3answers
171 views
Determining whether compiling on Windows or other system
Im currently developing a cross-platform C application.
Is there any compiler macro which is defined only during compilation on Windows, so I can #ifdef some Windows specific #includes?
Typical ...
3
votes
2answers
377 views
Referencing a platform-specific library from a non-specific .NET app
I often need to include little bits of native code in my C# apps, which I tend to do via C++/CLI. Usually I just need to use a C++ library for which there exists no good alternative for .NET; but ...
1
vote
1answer
102 views
Runtime or compile time for platform-specific libraries?
I'm creating a library in C++. It links against Windows libraries on Windows and Linux libraries on Linux. It's abstracted, all is well.
However, is it feasible to dynamically detect, load and use ...