tree: 7bfa6a70f59db093951a98625c3a03ca691e99fb [path history] [tgz]
  1. CMakeLists.txt
  2. Makefile.am
  3. README.md
  4. README_Windows.md
  5. compiler.sln
  6. compiler.vcxproj
  7. compiler.vcxproj.filters
  8. src/
  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