I have a folder containing hpp and cpp files. I need to create a header file that includes all hpp files in the said folder:
#pragma once
#include "test_1.hpp"
#include "test_2.hpp"
#include "test_3.hpp"
can CMake do that?
Note:I am not going to put 'my' research work on your shoulder. I just need to know if such thing is possible, and possibly a link to where I can read from. My initial googling didn't show anything useful. thank you