We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Had this error:
Building project PolkadotCppAPI CMake Error at /usr/lib/x86_64-linux-gnu/cmake/Boost-1.71.0/BoostConfig.cmake:182 (boost_find_component): boost_find_component Macro invoked with incorrect arguments for macro named: boost_find_component Call Stack (most recent call first): /usr/share/cmake-3.16/Modules/FindBoost.cmake:443 (find_package) CMakeLists.txt:66 (find_package)
OS: Ubuntu 20.04 cmake version: 3.16.3 Solved by changing line CMakeLists.txt#L66 :
else () - find_package (Boost 1.39.0 COMPONENTS "${WEBSOCKETPP_BOOST_LIBS}") + find_package (Boost 1.39.0 COMPONENTS ${WEBSOCKETPP_BOOST_LIBS}) endif()
The text was updated successfully, but these errors were encountered:
build: fix an error in CMakeList.txt that interepted the compiling
b2e261a
from: usetech-llc/polkadot_api_cpp#30 Signed-off-by: Mer Xuanyi <[email protected]>
No branches or pull requests
Had this error:
OS: Ubuntu 20.04
cmake version: 3.16.3
Solved by changing line CMakeLists.txt#L66 :
The text was updated successfully, but these errors were encountered: