Can I build a CMake install target without exporting files?

17 hours ago 5
ARTICLE AD BOX

I have a project all set up on GitHub with a CMakeLists.txt that configures and builds with no problem. However, since I'm using pybind11 to create a wrapper for a python library, I have those commands within install(). Is it possible to run CMake in a way that will build the install target but not actually export the files? Or at least, do a one-time override and just dump everything into a specified folder?

Here's the repo: https://github.com/BroDudeGuyMan/console_logger/tree/feature-add-python-lib

Let me know if I need to include any other info.

Read Entire Article