dingusdev / dingusppc

An experimental emulator
GNU General Public License v3.0
200 stars 21 forks source link

CMake Error at CMakeLists.txt:96 (install) SOLVED #18

Closed webspacecreations closed 3 years ago

webspacecreations commented 3 years ago

Upon trying to compile on Raspbian/ARM (cmake may be a few iterations behind), the following final error is given: CMake Error at CMakeLists.txt:96 (install): install TARGETS given no RUNTIME DESTINATION for executable target "dingusppc".

Open CMakeLists.txt and change the line to: install (TARGETS dingusppc DESTINATION ${PROJECT_SOURCE_DIR}/build)

This resolves the build problem and drops the binary into the build directory. As an aside, the following additional modules were needed for successful compilation: sudo apt install doxygen graphviz

dingusdev commented 3 years ago

Fixed the line and also noted the issue in readme.md