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
When trying to build the project (at development branch current HEAD) with benchmarks enabled as follows:
HEAD
$ mkdir build && cd build $ conan install .. --build missing -pr:h=default -pr:b=default -o benchmarks=on $ conan build ..
we get the following error:
sopt/cpp/benchmarks/wavelets.cc:2:10: fatal error: benchmark/benchmark.h: No such file or directory 2 | #include <benchmark/benchmark.h> | ^~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. gmake[2]: *** [cpp/benchmarks/CMakeFiles/benchmark_wavelets.dir/build.make:76: cpp/benchmarks/CMakeFiles/benchmark_wavelets.dir/wavelets.cc.o] Error 1 gmake[1]: *** [CMakeFiles/Makefile2:1761: cpp/benchmarks/CMakeFiles/benchmark_wavelets.dir/all] Error 2 gmake[1]: *** Waiting for unfinished jobs.... gmake: *** [Makefile:146: all] Error 2 ERROR: conanfile.py (sopt/4.0.0): Error in build() method, line 78 cmake.build() ConanException: Error 2 while executing cmake --build "sopt/build" '--' '-j8'
The text was updated successfully, but these errors were encountered:
This is a bit confusing, since it is a requirement in
sopt/conanfile.py
Line 15 in 2031067
Is this just a matter of missing
find_package(benchmark)
in https://github.com/astro-informatics/sopt/blob/development/cmake_files/dependencies.cmake
Sorry, something went wrong.
This info might help: https://github.com/google/benchmark#usage-with-cmake
mmcleod89
SJaffa
krishnakumarg1984
No branches or pull requests
When trying to build the project (at development branch current
HEAD
) with benchmarks enabled as follows:we get the following error:
The text was updated successfully, but these errors were encountered: