diff options
author | Roland Reichwein <mail@reichwein.it> | 2024-05-07 19:08:29 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2024-05-07 19:08:29 +0200 |
commit | 7dabda20e11138f2235b12271d569cd3256ebf3a (patch) | |
tree | d917df1ea84609519a560a092a63683cb54b1894 /MakefileReader.h | |
parent | 81bcfee54362c736e865ebeb638aeadfa9cc9e24 (diff) |
Recursive build
Diffstat (limited to 'MakefileReader.h')
-rw-r--r-- | MakefileReader.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/MakefileReader.h b/MakefileReader.h new file mode 100644 index 0000000..7ad63c2 --- /dev/null +++ b/MakefileReader.h @@ -0,0 +1,15 @@ +#pragma once + +#include <filesystem> + +#include <boost/property_tree/ptree.hpp> + +class MakefileReader +{ +public: + MakefileReader(); + + boost::property_tree::ptree read(const std::filesystem::path& path) const; +}; + + |