Tagged Questions
7
votes
2answers
750 views
Source code dependency manager for C++
There are already some questions about dependency managers here, but it seems to me that they are mostly about build systems, while I am looking for something targeted purely at making dependency ...
6
votes
3answers
329 views
C++: Tool to reduce compile-time dependencies automatically
After reading about the pimpl idiom I was horrified!
Isn't there a tool out there that can inspect a .h/.cpp file and deduce what dependencies could be waivered?
6
votes
5answers
2k views
Maven-like dependency management for C++?
Say I have a C++ project that is split in several subprojects. The subproject all produce a DLL and different teams of developers work on each of the subproject. Now if I want to build the main ...
3
votes
6answers
359 views
Are there good tips or tools for removing third party C and C++ libraries from a codebase? (OS X or Linux)
I am in the process of reducing and quarantining my usage of some libraries. Many existing programs I've written use these libraries directly. I would like the compiler (GCC and/or Clang in this case) ...
3
votes
2answers
480 views
C++ C# Projects dependency management
I'm trying to figure out how to manage our main Visual Studio solution.
In the solution we have to manage C++/CLI projects, C++ native projects, C# projects, external dependencies (compiled C# ...
1
vote
4answers
240 views
C++ multiple definition of operator>>
I'm using the proposed solution by @Martin for csv parsing with C++, as I'm trying to avoid using libraries like boost and such for my current project. I've placed his implementation in a "csv.h" ...
0
votes
1answer
61 views
Problem with file dependencies and templates on a C++ program [closed]
Possible Duplicates:
Templated function being reported as “undefined reference” during compilation
Why can templates only be implemented in the header file?
Hi,
I'm having a ...
0
votes
4answers
100 views
Timing related crash when unloading a DLL?
I know I'm reaching for straws here, but this one is a mystery... any pointers or help would be most welcome, so I'm appealing to those more intelligent than I:
We have a crash exhibited in our ...