cvtvt
Overview
Cvtvt is now part of Yori. Information on this page may be stale.
Cvtvt converts VT100/ANSI escape sequences into other formats including HTML, plain text, or formatted for the Windows console. It can also be used to execute another program and format VT100/ANSI escape sequences into the Windows console.
License
This software is licensed under the terms of the MIT license.
Downloads
- Latest stable precompiled binary (with MiniCRT)
- cvtvt.exe (version 0.70, 14 Kb, last updated 16 Jul 2017)
- Latest stable source code
- cvtvt-source.zip (version 0.70, 21.8 Kb, last updated 16 Jul 2017)
- Latest development precompiled binary (with MiniCRT)
- cvtvt.exe (version 0.70.2017012901, 14 Kb, last updated 29 Jan 2017)
- Latest development source code
- cvtvt-source.zip (version 0.70.2017012901, 21.1 Kb, last updated 29 Jan 2017)
- Older versions
- See the archive page.
System Requirements
To run cvtvt binaries, you need Windows 95 or NT 3.1 or newer.
To compile from source, you need Visual C++, version 2 or newer. Free versions of Visual C++ are included in the Visual C++ 2015 Build Tools, Windows SDK 7.1 (2010), or Windows SDK 7.0 (2008).
Build instructions
- Open a command prompt to your version of Visual C++ and set up your environment.
- Unpack and enter the cvtvt source tree.
- Most of the time, just run "nmake".
Compilation options
Compilation options can be used by passing arguments to NMAKE.
DEBUG= | Enable debug code. Valid values are 0 (disabled) or 1 (enabled.) Default is 0. |
MINICRT= | Compile against Minicrt rather than Msvcrt. Valid values are 0 (disabled) or 1 (enabled.) If 1, minicrt.h and minicrt.lib must be in %INCLUDE% and %LIB% respectively. An alternative way to use Minicrt is to extract it into a crt subdirectory within the cvtvt directory, and it will be used automatically. Default is 0. |
MSVCRT_DLL= | Compile against the shared, DLL C runtime library, or the static version. Valid values are 0 (static C runtime), or 1 (shared C runtime.) Default is 1. |