@@ -64,135 +64,128 @@ const TargetConfig &TargetInfoGetter<T>::GetConfig() const {
6464
6565// Target Storer
6666template <typename T>
67- const internal::fs_unordered_set &
68- TargetInfoGetter<T>::GetCurrentSourceFiles() const {
67+ const fs_unordered_set &TargetInfoGetter<T>::GetSourceFiles() const {
6968 const T &t = static_cast <const T &>(*this );
7069
7170 return t.storer_ .current_source_files .user ;
7271}
7372
7473template <typename T>
75- const internal::fs_unordered_set &
76- TargetInfoGetter<T>::GetCurrentHeaderFiles() const {
74+ const fs_unordered_set &TargetInfoGetter<T>::GetHeaderFiles() const {
7775 const T &t = static_cast <const T &>(*this );
7876
7977 return t.storer_ .current_header_files .user ;
8078}
8179
8280template <typename T>
83- const internal::fs_unordered_set &
84- TargetInfoGetter<T>::GetCurrentPchFiles() const {
81+ const fs_unordered_set &TargetInfoGetter<T>::GetPchFiles() const {
8582 const T &t = static_cast <const T &>(*this );
8683
8784 return t.storer_ .current_pch_files .user ;
8885}
8986
9087template <typename T>
91- const std::vector<fs::path> &TargetInfoGetter<T>::GetTargetLibDeps () const {
88+ const std::vector<fs::path> &TargetInfoGetter<T>::GetLibDeps () const {
9289 const T &t = static_cast <const T &>(*this );
9390
9491 return t.storer_ .current_user_lib_deps ;
9592}
9693
9794template <typename T>
9895const std::vector<std::string> &
99- TargetInfoGetter<T>::GetCurrentExternalLibDeps () const {
96+ TargetInfoGetter<T>::GetExternalLibDeps () const {
10097 const T &t = static_cast <const T &>(*this );
10198
10299 return t.storer_ .current_user_external_lib_deps ;
103100}
104101
105102template <typename T>
106- const internal::fs_unordered_set &
107- TargetInfoGetter<T>::GetCurrentIncludeDirs() const {
103+ const fs_unordered_set &TargetInfoGetter<T>::GetIncludeDirs() const {
108104 const T &t = static_cast <const T &>(*this );
109105
110106 return t.storer_ .current_include_dirs ;
111107}
112108
113109template <typename T>
114- const internal::fs_unordered_set &
115- TargetInfoGetter<T>::GetCurrentLibDirs() const {
110+ const fs_unordered_set &TargetInfoGetter<T>::GetLibDirs() const {
116111 const T &t = static_cast <const T &>(*this );
117112
118113 return t.storer_ .current_lib_dirs ;
119114}
120115
121116template <typename T>
122117const std::unordered_set<std::string> &
123- TargetInfoGetter<T>::GetCurrentPreprocessorFlags () const {
118+ TargetInfoGetter<T>::GetPreprocessorFlags () const {
124119 const T &t = static_cast <const T &>(*this );
125120
126121 return t.storer_ .current_preprocessor_flags ;
127122}
128123
129124template <typename T>
130125const std::unordered_set<std::string> &
131- TargetInfoGetter<T>::GetCurrentCommonCompileFlags () const {
126+ TargetInfoGetter<T>::GetCommonCompileFlags () const {
132127 const T &t = static_cast <const T &>(*this );
133128
134129 return t.storer_ .current_common_compile_flags ;
135130}
136131
137132template <typename T>
138133const std::unordered_set<std::string> &
139- TargetInfoGetter<T>::GetCurrentPchCompileFlags () const {
134+ TargetInfoGetter<T>::GetPchCompileFlags () const {
140135 const T &t = static_cast <const T &>(*this );
141136
142137 return t.storer_ .current_pch_compile_flags ;
143138}
144139
145140template <typename T>
146141const std::unordered_set<std::string> &
147- TargetInfoGetter<T>::GetCurrentPchObjectFlags () const {
142+ TargetInfoGetter<T>::GetPchObjectFlags () const {
148143 const T &t = static_cast <const T &>(*this );
149144
150145 return t.storer_ .current_pch_object_flags ;
151146}
152147
153148template <typename T>
154149const std::unordered_set<std::string> &
155- TargetInfoGetter<T>::GetCurrentAsmCompileFlags () const {
150+ TargetInfoGetter<T>::GetAsmCompileFlags () const {
156151 const T &t = static_cast <const T &>(*this );
157152
158153 return t.storer_ .current_asm_compile_flags ;
159154}
160155
161156template <typename T>
162157const std::unordered_set<std::string> &
163- TargetInfoGetter<T>::GetCurrentCCompileFlags () const {
158+ TargetInfoGetter<T>::GetCCompileFlags () const {
164159 const T &t = static_cast <const T &>(*this );
165160
166161 return t.storer_ .current_c_compile_flags ;
167162}
168163
169164template <typename T>
170165const std::unordered_set<std::string> &
171- TargetInfoGetter<T>::GetCurrentCppCompileFlags () const {
166+ TargetInfoGetter<T>::GetCppCompileFlags () const {
172167 const T &t = static_cast <const T &>(*this );
173168
174169 return t.storer_ .current_cpp_compile_flags ;
175170}
176171
177172template <typename T>
178173const std::unordered_set<std::string> &
179- TargetInfoGetter<T>::GetCurrentLinkFlags () const {
174+ TargetInfoGetter<T>::GetLinkFlags () const {
180175 const T &t = static_cast <const T &>(*this );
181176
182177 return t.storer_ .current_link_flags ;
183178}
184179
185180template <typename T>
186- const internal::fs_unordered_set &
187- TargetInfoGetter<T>::GetCurrentCompileDependencies() const {
181+ const fs_unordered_set &TargetInfoGetter<T>::GetCompileDependencies() const {
188182 const T &t = static_cast <const T &>(*this );
189183
190184 return t.storer_ .current_compile_dependencies .user ;
191185}
192186
193187template <typename T>
194- const internal::fs_unordered_set &
195- TargetInfoGetter<T>::GetCurrentLinkDependencies() const {
188+ const fs_unordered_set &TargetInfoGetter<T>::GetLinkDependencies() const {
196189 const T &t = static_cast <const T &>(*this );
197190
198191 return t.storer_ .current_link_dependencies .user ;
0 commit comments