tree: ab0b353446c666ae3e3ec0621dd6757a735e455d [path history] [tgz]
  1. src/
  2. CMakeLists.txt
  3. compiler.sln
  4. compiler.vcxproj
  5. compiler.vcxproj.filters
  6. Makefile.am
  7. README.md
  8. README_Windows.md
  9. version.h.in
compiler/cpp/README.md

Build compiler using CMake

Use the following steps to build using cmake

mkdir build cd build cmake .. make

Build on windows

In order to build on windows a few additional steps are necessary

  1. Download winflexbison from http://sourceforge.net/projects/winflexbison/
  2. Extract the winflex bison files to for e.g. C:\winflexbison
  3. Make the CMake variables point to the correct binaries.
  • FLEX_EXECUTBALE = C:/winbuild/win_flex.exe
  • BISON_EXECUTBALE = C:/winbuild/win_bison.exe