aboutsummaryrefslogtreecommitdiff
path: root/build.rs
AgeCommit message (Collapse)Author
2018-10-17build(package): acquire latest winptyOJ Kwon
2018-10-16Add support for Windows (#1374)Zac Pullar-Strecker
Initial support for Windows is implemented using the winpty translation layer. Clipboard support for Windows is provided through the `clipboard` crate, and font rasterization is provided by RustType. The tty.rs file has been split into OS-specific files to separate standard pty handling from the winpty implementation. Several binary components are fetched via build script on windows including libclang and winpty. These could be integrated more directly in the future either by building those dependencies as part of the Alacritty build process or by leveraging git lfs to store the artifacts. Fixes #28.
2017-12-22Remove built crateJoe Wilm
This became a support burden for me due to various compile and run time issues.
2017-11-11Output more info for `--version` (#888)hcpl
Useful when requesting more info to help investigating issues.
2016-06-29Add license headers to source filesJoe Wilm
2016-05-20Correct sub-pixel font rendering with OpenGLJoe Wilm
Uses the GL_ARB_blend_func_extended to get single-pass, per-channel alpha blending. gl_generator is now used instead of gl to enable the extension. The background color is removed since that presumably needs to run in a separate pass.