]> git.tdb.fi Git - builder.git/blobdiff - source/buildercli.h
Add support for statically linking the C++ standard library
[builder.git] / source / buildercli.h
index ac8875231ff27ddba88fa6844edc33a31c67c115..efc2cc9bdc5431d4541ac2903d1d79a7c0c5835c 100644 (file)
@@ -6,6 +6,9 @@
 
 class Analyzer;
 
+/**
+Provides a command-line interface for Builder.
+*/
 class BuilderCLI: public Msp::RegisteredApplication<BuilderCLI>
 {
 private:
@@ -22,6 +25,7 @@ private:
        unsigned clean;
        bool dry_run;
        bool help;
+       std::string helpmsg;
        bool show_progress;
        std::string build_file;
        unsigned jobs;
@@ -31,18 +35,16 @@ private:
        bool build_all;
        bool create_makefile;
 
-       static std::string usagemsg;
-       static std::string helpmsg;
-
 public:
        BuilderCLI(int, char **);
        ~BuilderCLI();
 
        virtual int main();
 
+private:
        bool prepare_build();
+       Target *resolve_target(const std::string &);
 
-       static void usage(const char *, const char *, bool);
        void package_help();
 };