]> git.tdb.fi Git - builder.git/blobdiff - source/buildinfo.h
Use Path objects to store include and library paths
[builder.git] / source / buildinfo.h
index 297efff1df0c915ee4d51a31d831d0051ed58293..144a16dabb0e1e3215290745566b827bb63b220e 100644 (file)
@@ -33,12 +33,14 @@ public:
        };
 
        typedef std::map<std::string, std::string> DefineMap;
+       typedef std::list<Msp::FS::Path> PathList;
+       typedef std::list<std::string> WordList;
 
        DefineMap defines;
-       StringList incpath;
-       StringList libpath;
-       StringList libs;
-       StringList warnings;
+       PathList incpath;
+       PathList libpath;
+       WordList libs;
+       WordList warnings;
        bool threads;
        bool debug;
        int optimize;