Linked Questions
10 questions linked to/from How to merge two windows vc static library into one
0 votes
0 answers
38 views
Static library with third party libraries in Visual Studio [duplicate]
I'm looking for the answer to following question: Is there any possibility to create a static library which uses other static third party libraries so the main application will need just to link my ...
136 votes
8 answers
119k views
How to merge two "ar" static libraries into one?
I have 2 static Linux libraries, created by ar cr, libabc.a and libxyz.a. I want to merge them into one static library libaz.a. How can I do this. I want to create a merged static library, not to ...
1 vote
2 answers
6k views
How to "combine" two static libraries?
so I know that you can't depend a static library to another one but i was wondering if there is something that lets me combine them together. I am trying to setup a game engine project file in vstudio ...
-1 votes
1 answer
887 views
Create a Portable Static Library from a Project Based on OpenCV Static Libraries
I compiled OpenCV 3.x with the Static Libraries options (-DBUILD_SHARED_LIBS=OFF). No I have a project built with few functions which uses OpenCV. I want to build my project as a portable static ...
0 votes
1 answer
807 views
Static library that depends on other static libraries
I am writting a game, and at the same time building an engine for it and for other games I may make in the future. During testing on both the game logic and the engine (separately) run well. However ...
0 votes
1 answer
697 views
How do you package all link dependencies into a single Linux static library?
I'm publishing a multi-platform library and it's working everywhere except Linux. There's probably a way to do what I need, but I'm not seeing it and hoping someone here can help. My library ...
1 vote
0 answers
641 views
CMake merges several static libs in one lib when they are also depend on other existed third-party libraries
I use CMake to build a project that consists of multiple nested static libraries .A similar but simple structure is shown in the figure below: TestProject: |-CMakeLists.txt |-Main.cpp |-level2 | | -...
0 votes
2 answers
475 views
Producing a hybrid static library with MSVC
It is my understanding that Visual Studio library projects use two separate processes after compiling, depending on the "General/Configuration type" setting: If "static library" is selected, all of ...
1 vote
1 answer
383 views
Archiving static dependencies in modern CMake project
I need to package a C++ library that links to some other static libraries, and I'd like to be able to ship the compiled files alone without the need to ship the transitive dependencies as well. To ...
3 votes
1 answer
275 views
Making a library of libraries so that the end user doesn't require the original libraries
I am making a library using C++ 11, and my library uses several other libraries, like FreeImage and GLFW. I would like to be able to distribute my library in a way that the end users will not be ...