diff options
author | Roland Reichwein <mail@reichwein.it> | 2024-05-18 16:31:14 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2024-05-18 16:31:14 +0200 |
commit | f857007dbb6a0a26a6828017da64540eda452fbf (patch) | |
tree | a2fc22abb236c6f07a9b9425a87b18f5f2e189f8 /LanguageSettings.h | |
parent | 8a4dfbbbe76a2aef35427b7915d6e28bab165c43 (diff) |
Link different kinds of libs
Diffstat (limited to 'LanguageSettings.h')
-rw-r--r-- | LanguageSettings.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/LanguageSettings.h b/LanguageSettings.h index 0378d81..83eaa09 100644 --- a/LanguageSettings.h +++ b/LanguageSettings.h @@ -10,13 +10,13 @@ public: LanguageSettings(); std::string getCompileCommand(const std::filesystem::path& target, - const std::filesystem::path &source, + const std::filesystem::path& source, const std::filesystem::path& build, const std::vector<std::filesystem::path>& includepaths) const; std::string getLinkCommand(const std::filesystem::path& target, - const std::vector<std::filesystem::path> &inputs, - const std::vector<std::string>& link_libs) const; - std::string getDepCommand(const std::filesystem::path& target, const std::filesystem::path &source) const; + const std::vector<std::filesystem::path>& inputs, + const std::vector<std::filesystem::path>& link_libs) const; + std::string getDepCommand(const std::filesystem::path& target, const std::filesystem::path& source) const; private: std::string CXX; |