I'm using CLion 2022.1 to work on a (C++) project. In this project, I have files named src/foo/build.hpp
and src/bar/build.hpp
. These files are included from the main()
translation unit, and are even listed as sources in the CMake add_executable()
command.
However, for some reason (which I may totally be at fault for), I can't see these files in my CLion project view. They don't even show up as excluded files (which I've made visible). I suspect there might be somewhere I've told CLion to hide anything with the world "build" in it. But - where?
Where could I have possibly made these files invisible?