CBuild
C++ build system with scripts written in c++
Loading...
Searching...
No Matches
gcc_hash_impl.hpp
Go to the documentation of this file.
1
22// C++ libraries
23#include "../map.hpp"
24#include "string"
25#include "vector"
26// Code
27#ifndef __GCC_HASH_IMPL_HPP__
28#define __GCC_HASH_IMPL_HPP__
29namespace CBuild {
37lib::map<std::string, std::string> gcc_hash_impl(std::vector<std::string> file_list,
38 std::vector<std::string> objects_list,
39 std::string target_id);
40
41} // namespace CBuild
42#endif // __GCC_HASH_IMPL_HPP__
Simple map implementation with some stack operation added.
Definition map.hpp:79
Custom implementation of map datatype.
Filebuffer for CBuild ecosystem.
Definition Build.hpp:34
lib::map< std::string, std::string > gcc_hash_impl(std::vector< std::string > file_list, std::vector< std::string > objects_list, std::string target_id)
Implementation of GCC hasher.
Definition gcc_hash.cpp:76