]> git.tdb.fi Git - builder.git/blobdiff - source/androidapplicationcomponent.h
Don't complain about missing executable if a tool has no command
[builder.git] / source / androidapplicationcomponent.h
index 017467f20df897a9a58399d550c6065ae4ce93d0..9e19b6d8ab5aa1d8daa6111bbd0c4575cb328a29 100644 (file)
@@ -1,7 +1,6 @@
 #ifndef ANDROIDAPPLICATIONCOMPONENT_H_
 #define ANDROIDAPPLICATIONCOMPONENT_H_
 
-#include <set>
 #include "component.h"
 
 class AndroidApplicationComponent: public Component
@@ -18,10 +17,10 @@ public:
 
 private:
        std::string orientation;
-       std::set<std::string> permissions;
+       std::vector<std::string> permissions;
 
 public:
-       AndroidApplicationComponent(SourcePackage &, const std::string &);
+       AndroidApplicationComponent(SourcePackage &p, const std::string &n): Component(p, n) { }
 
        void create_targets() const override;
 };