0
How can we create our own packages in C/C++
How can we create packages using C C++ for mobile app development
1 Answer
+ 5
It depends on your development environment. Standalone compiler, you do all the work yourself. IDE, you do a lot less as most is automatic. In simple terms, you create a header to share the interface, a code file to perform the work, and compile the code to create a binary library. This library gets linked into programs that need it.