English 中文(简体)
C++图书馆视窗包曼账
原标题:Windows package-manager for C++ libraries

我一直在开展各种开放源项目,这些项目包括以下C++图书馆(和;其他图书馆):

  • MuPDF
  • Boost
  • FreeType
  • GTKmm
  • hummus PDF libraries
  • LibTiff
  • LibXML2
  • Wt xpdf
  • xpdf
  • Poppler
  • ZLib

在建立这些图书馆时,往往需要很长时间。 是否有办法使对所有依赖者在窗户机器上的掠夺自动化?

最新发现的I系列是CMake,它检查确保你在生成项目档案之前安装/接收附属设施。 但是,我发现任何窗户都可以把依赖者名单打上平,然后下载到所需的版本。

请推荐一个拥有最新C++图书馆的Windows包裹管理员。

最佳回答
问题回答

Vcpkg, 微软的开放源项目,帮助你在Windows上获得C和C++图书馆。

Biicode是C++的新附属管理人。 图书馆还有几家图书馆。 Biicode自动扫描你的来源档案,供用户使用、下载和整理。 See here, for a very Gabon example, including Freeglut.

What I ve found:

我所期待的东西最接近:

不幸的是,它在存放处没有我所需要的任何图书馆。

因此,我最后从和习俗建设其余部分。

Windows没有包裹管理人。 进入图书馆网站并下载视窗,如果提供的话。

有一些替代方案,但是没有缺点:

  • Cygwin: provides a nice package manager, but all binaries are built for Cygwin, which means they run slower than their native equivalent, any apps using them will link to the Cygwin DLL, and you re stuck with that license. Also the use of the native Win32 API is sometimes troublesome due to incompatibility with the POSIX emulation offered. Only for GCC.
  • MinGW-get: is a package manager for the MinGW.org compiler. These are native Win32 binaries, but only for use with MinGW s GCC.

没有任何视频演播室或MinGW-w64相关内容的包裹管理员或稍加等同物。

Windows没有一揽子管理。 视窗开发商通常使用全方位的、全方位的构思开发环境,自行生产单体应用,并随附运。





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签