useful open source libraries/projects on Windows [closed]
开发者_运维问答
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this questionWhich open-source projects do you feel C/C++ Windows developers should be aware of?
Boost Libraries: generic library (smart pointers, command line parsing, threads, formatting, etc)
Postgresql: full-feature SQL database.
MediaInfo: provides information about audio/video files.
I would say
GTK+- Qt.
- SQLite is awesome.
- libxml.
- Mono
- Monodevelop
- Eclipse IDE
- Apache HTTP Server and APR, and all Apache top-levels
- GLib
- OpenGL
Actually, just install Linux or another Free UNIX
CodeCogs is great for scientific, mathematical, and engineering applications:
#include <codecogs/stats/moments/kurtosis.h>
#include <iostream>
int main()
{
float x[5] = {3.4 , 7.1 , 1.5 , 8.6 , 4.9};
double kurt = Stats::Moments::kurtosis<float>(5, x);
// "Population kurtosis is: -0.928457"
std::cout << "Population kurtosis is: " << kurt << std::endl;
return 0;
}
Open Source Softwares for Windows Platforms. It list number of Open Source Softwares for Windows Platform.
精彩评论