Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-10-07Extend use of w32subset API partitioning to cover more Win32 functions. (#20453)Johan Lorensson
* Extend w32subset API usage. * Fix C++ build error. * Remove HAVE_SYSTEM from w32subset.h. * Use relative path for w32subset.h in eglib. * Move w32subset.h into utils.
2017-10-03Updated with review feedback.lateralusX
2017-10-03Align eglib vcxproj with makefile.lateralusX
2017-10-03Added labels to eglib and libmonoutils.lateralusX
2017-08-08[runtime] Move eglib into mono/eglib so it becomes a convenience library ↵Zoltan Varga
similar to utils/ etc. (#5297)
2017-04-24Separate the eglib source and build instructionsJosh Peterson
This change extracts the eglib source files from the build instuctions for builds via MSVC on Windows. It also separates the source files into platform-specific and common .targets files. This provides more flexibility for builds from MSVC in a few important ways: 1. We can do MSVC-based builds for platforms that will not be pushed to public repos by checking out the Mono code externally and importing the .targets files into a custom .vcxproj for the platform. 2. We can replace the platform specific .targets files with a custom set of source files to implement a different platform abstraction layer that will not be public without the need to merge changes to the .vcxproj from the public repo. This allows for ease of synchronizing changes to the public Mono repo with private forks, while _not_ changing the behavior of the code in the public repo.