Compilandolo en Windows con Cmake y MinGW - enzo418/InterpreteLenguaje GitHub Wiki
- Descargar el Instalador de CMake. EN LA INSTALACION seleccionar la opcion agregar variables de CMake al PATH de Windows
- Descargar e instalar mingw-w64 que ya viene con todas las herramientas para compilar c y c++
- Agregar mingw-w64 a las variables PATH de Windows, por ej. > C:\Program Files (x86)\mingw-w64\i686-4.9.2-posix-dwarf-rt_v4-rev2\mingw32\bin
- Abrir una consola PowerShell o CMD e ir al directorio donde esta el codigo fuente
- Ejecutar los siguientes comandos:
mkdir build
cd build
cmake .. -G "MinGW Makefiles"
mingw32-make
Y se tendria que haber generado el archivo Interprete.exe en la carpeta build