"PERLLIB=${CMAKE_CURRENT_SOURCE_DIR}" should be "PERLLIB=${CMAKE_CURRENT_BINARY_DIR}" #1418
Labels
2c Ready for Development
Status indicating the Requirements are sufficent to begin designing a solution
3d Bug
Classification indicating the existing implementation does not match the intention of the design
6 Build
Impact flag identifying the build process
9a Tiny
Effort estimation indicating TBD
good first issue
Milestone
The following line in libraries/wallet/CMakeLists.txt
PERLLIB=${CMAKE_CURRENT_SOURCE_DIR}
should be
PERLLIB=${CMAKE_CURRENT_BINARY_DIR}
otherwise the doxygen build will complain " Can't locate doxygen/perlmod/DoxyDocs.pm" in Ubuntu 18.04 TLS.
because the actual full path of DoxyDocs.pm is "BitShares/build/libraries/wallet/doxygen/perlmod/DoxyDocs.pm" if the cmake build dir is "BitShares/build".
The text was updated successfully, but these errors were encountered: