Philip Salvaggio
Philip Salvaggio
I have been using ccache for a long time in CMake and have integrated it the following way: ``` find_program(CCACHE_FOUND ccache) if (CCACHE_FOUND) set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache) set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK...
I would like to use the JSON_DIAGNOSTICS feature to produce better error messages. I am using the library through Homebrew and in the Targets.cmake file, there is the following: ```...
I was working with the approach from this library and I found the following type trait to be useful. It might be worth including in your library if you agree:...
Hello, I have been talking for a while with the folks over at OpenDroneMap about how to add rolling shutter camera reconstruction to their workflow. Their user community is very...
Hello, I'm interested in using this project in my work, but the build system is causing me some issues. Currently it is hardcoded to build static libraries and the CMake...
Use Case: I am building a project that I want to install into a conda environment. I want all my package artifacts to go into `lib/python3.X/site-packages/${PROJECT_NAME}`, but the installed CMake...