CBuild
C++ build system with scripts written in c++
|
#include <cbuild_hash.hpp>
Public Member Functions | |
CBuildHashV2 (std::string target_id) | |
virtual lib::map< std::string, std::string > | get_files_for_recompilation (std::vector< std::string > file_list, std::vector< std::string > objects_list) override |
Pass a list of source files and coresponding object files and get a map of source-object that need to be recompiled (check only hash and dependencie hash, not any arg canges) | |
virtual int | compare_and_set_cargs (std::vector< std::string > cargs) override |
Compare compile args and update metadata. | |
virtual int | compare_and_set_largs (std::vector< std::string > largs) override |
Compare link args and update metadata. | |
virtual int | compare_and_set_commands (std::string compiler, std::string linker, std::string packer) override |
Compare shell commands used for compilation and update metadata. | |
virtual int | compare_and_set_output_file (std::string out) override |
Compare output file name and update metadata. | |
virtual void | set_target_meta (std::vector< std::string > cargs, std::vector< std::string > largs, std::string out, std::string compiler, std::string linker, std::string packer) override |
Set the target meta. | |
![]() | |
Hash (std::string target_id) | |
Additional Inherited Members | |
![]() | |
std::string | target_id |
Definition at line 34 of file cbuild_hash.hpp.
|
inline |
Definition at line 36 of file cbuild_hash.hpp.
|
inlineoverridevirtual |
Compare compile args and update metadata.
cargs | => std::vector<std::string> -> Compile args |
t match, -1 - File didn
t exist at all Implements CBuild::Hash.
Definition at line 40 of file cbuild_hash.hpp.
References CBuild::target_metadata_file::cargs, CBuild::printf_full(), CBuild::read_target_metadata(), CBuild::RED, CBuild::Hash::target_id, and CBuild::write_target_metadata().
|
inlineoverridevirtual |
Compare shell commands used for compilation and update metadata.
compiler | => std::string -> Command used for compiling source files |
linker | => std::string -> Command used for linking objects |
packer | => std::string -> Command used for packing static libs |
t match, -1 - File didn
t exist at all Implements CBuild::Hash.
Definition at line 66 of file cbuild_hash.hpp.
References CBuild::target_metadata_file::compiler, CBuild::target_metadata_file::linker, CBuild::target_metadata_file::packer, CBuild::printf_full(), CBuild::read_target_metadata(), CBuild::RED, CBuild::Hash::target_id, and CBuild::write_target_metadata().
|
inlineoverridevirtual |
Compare link args and update metadata.
cargs | => std::vector<std::string> -> Compile args |
t match, -1 - File didn
t exist at all Implements CBuild::Hash.
Definition at line 53 of file cbuild_hash.hpp.
References CBuild::target_metadata_file::largs, CBuild::printf_full(), CBuild::read_target_metadata(), CBuild::RED, CBuild::Hash::target_id, and CBuild::write_target_metadata().
|
inlineoverridevirtual |
Compare output file name and update metadata.
out | => std::string -> Output name |
t match, -1 - File didn
t exist at all Implements CBuild::Hash.
Definition at line 82 of file cbuild_hash.hpp.
References CBuild::target_metadata_file::out, CBuild::printf_full(), CBuild::read_target_metadata(), CBuild::RED, CBuild::Hash::target_id, and CBuild::write_target_metadata().
|
overridevirtual |
Pass a list of source files and coresponding object files and get a map of source-object that need to be recompiled (check only hash and dependencie hash, not any arg canges)
file_list | => std::vector<std::string> -> List of source files |
objects_list | => std::vector<std::string> -> List of object files |
Implements CBuild::Hash.
Definition at line 169 of file cbuild_hash.cpp.
References check_mismatch_recursive(), internal_data::headers_metadata, internal_data::headers_to_parse, parse_file(), CBuild::print_full(), print_metadata(), lib::map< _K, _D >::ptr_at(), lib::map< _K, _D >::push_back(), lib::map< _K, _D >::size(), internal_data::sources_metadata, and CBuild::Hash::target_id.
|
inlineoverridevirtual |
Set the target meta.
cargs | => std::vector<std::string> -> Compile args |
largs | => std::vector<std::string> -> Link args |
out | => std::string -> Output binary name |
compiler | => std::string -> Command used for compiling source files |
linker | => std::string -> Command used for linking objects |
packer | => std::string -> Command used for packing static libs |
Implements CBuild::Hash.
Definition at line 96 of file cbuild_hash.hpp.
References CBuild::target_metadata_file::cargs, CBuild::target_metadata_file::compiler, CBuild::target_metadata_file::largs, CBuild::target_metadata_file::linker, CBuild::target_metadata_file::out, CBuild::target_metadata_file::packer, CBuild::Hash::target_id, and CBuild::write_target_metadata().