]> git.tdb.fi Git - builder.git/blob - source/misc.h
Redesign the library mode system
[builder.git] / source / misc.h
1 #ifndef MISC_H_
2 #define MISC_H_
3
4 #include <list>
5 #include <map>
6 #include <string>
7 #include <msp/fs/path.h>
8
9 enum LibMode
10 {
11         FORCE_STATIC,
12         STATIC,
13         DYNAMIC,
14         FORCE_DYNAMIC
15 };
16
17 typedef std::list<std::string> StringList;
18 typedef std::list<Msp::FS::Path> PathList;
19 typedef std::map<std::string, std::string> StringMap;
20
21 #endif