Build error #include <toml++/toml.hpp>
des-alt opened this issue · 1 comments
des-alt commented
Hi, I cloned the actual version 0.16 and ran cmake:
~/Downloads/hyprcursor/libhyprcursor/manifest.cpp:3:10: fatal error: toml++/toml.hpp: No such file or directory
3 | #include <toml++/toml.hpp>
| ^~~~~~~~~~~~~~~~~
compilation terminated.
gmake[2]: *** [CMakeFiles/hyprcursor.dir/build.make:118: CMakeFiles/hyprcursor.dir/libhyprcursor/manifest.cpp.o] Error 1
gmake[2]: *** Waiting for unfinished jobs....
~/Downloads/hyprcursor/libhyprcursor/meta.cpp:4:10: fatal error: toml++/toml.hpp: No such file or directory
4 | #include <toml++/toml.hpp>
| ^~~~~~~~~~~~~~~~~
compilation terminated.
gmake[2]: *** [CMakeFiles/hyprcursor.dir/build.make:132: CMakeFiles/hyprcursor.dir/libhyprcursor/meta.cpp.o] Error 1
gmake[1]: *** [CMakeFiles/Makefile2:848: CMakeFiles/hyprcursor.dir/all] Error 2
gmake: *** [Makefile:146: all] Error 2
A little reading of the toml++ documentation (https://marzer.github.io/tomlplusplus/#mainpage-adding-lib-old-school)
did the "regular flavor" items
Caused a warning, but it worked:
~/Downloads/hyprcursor/tests/c_test.c: In function ‘main’:
~/Downloads/hyprcursor/tests/c_test.c:35:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long unsigned int’ [-Wformat=]
35 | printf("left_ptr images: %d\n", shapeData->len);
| ~^ ~~~~~~~~~~~~~~
| | |
| int long unsigned int
| %ld
~/Downloads/hyprcursor/tests/c_test.c:38:39: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long unsigned int’ [-Wformat=]
38 | printf("left_ptr image size: %d\n", shapeData->images[i].len);
| ~^ ~~~~~~~~~~~~~~~~~~~~~~~~
| | |
| int long unsigned int
| %ld
[ 78%] Linking C executable hyprcursor_test_c
[ 78%] Built target hyprcursor_test_c
[ 85%] Linking CXX executable hyprcursor_test1
[ 92%] Linking CXX executable hyprcursor_test2
[ 92%] Built target hyprcursor_test1
[ 92%] Built target hyprcursor_test2
[100%] Linking CXX executable hyprcursor-util
[100%] Built target hyprcursor-util
Afterwards when trying to build hyprland I got the same toml++ error.
I'm not sure if it's a problem of missing files in the repo or in my system.
vaxerski commented
you're missing a dependency