fabianishere / brainfuck

Brainfuck interpreter written in C

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Failed at cmake ..

anistark opened this issue · comments

commented

Faced this issue while installing brainfuck in ubuntu x86_64 at this step

cmake ..

Output :

Could NOT find Doxygen (missing:  DOXYGEN_EXECUTABLE) 
CMake Error at CMakeLists.txt:29 (message):
  Doxygen is needed to build the documentation.

Doxygen is required when building the documentation. To disable documentation, run cmake with the following option:

$  cmake -DWITH_DOCUMENTATION=FALSE ..

This option is enabled by default on the develop branch. Also, since this is the develop branch, the interpreter won't work as expected. If you are looking for a working interpreter, take a look the master branch: https://github.com/fabianishere/brainfuck.

Thank you!