lix/src/globals.cc

18 lines
289 B
C++
Raw Normal View History

#include "globals.hh"
#include "db.hh"
string dbHash2Paths = "hash2paths";
2003-07-04 12:18:06 +00:00
string dbSuccessors = "successors";
string nixStore = "/UNINIT";
string nixLogDir = "/UNINIT";
string nixDB = "/UNINIT";
void initDB()
{
createDB(nixDB, dbHash2Paths);
2003-07-04 12:18:06 +00:00
createDB(nixDB, dbSuccessors);
}