2016-09-18 20:50:08 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "StatusParagraphs.h"
|
2017-04-03 16:29:11 -07:00
|
|
|
#include "VcpkgPaths.h"
|
2017-04-01 03:30:52 -07:00
|
|
|
#include "SortedVector.h"
|
2016-09-18 20:50:08 -07:00
|
|
|
|
|
|
|
namespace vcpkg
|
|
|
|
{
|
2017-03-13 16:39:40 -07:00
|
|
|
extern bool g_debugging;
|
|
|
|
|
2017-04-03 16:29:11 -07:00
|
|
|
StatusParagraphs database_load_check(const VcpkgPaths& paths);
|
2016-09-18 20:50:08 -07:00
|
|
|
|
2017-04-03 16:29:11 -07:00
|
|
|
void write_update(const VcpkgPaths& paths, const StatusParagraph& p);
|
2016-11-15 11:56:46 -08:00
|
|
|
|
2017-04-03 16:32:14 -07:00
|
|
|
struct StatusParagraphAndAssociatedFiles
|
2016-12-01 15:36:39 -08:00
|
|
|
{
|
|
|
|
StatusParagraph pgh;
|
2017-04-01 03:30:52 -07:00
|
|
|
SortedVector<std::string> files;
|
2016-12-01 15:36:39 -08:00
|
|
|
};
|
|
|
|
|
2017-03-29 16:00:41 -07:00
|
|
|
std::vector<StatusParagraph*> get_installed_ports(const StatusParagraphs& status_db);
|
2017-04-03 16:32:14 -07:00
|
|
|
std::vector<StatusParagraphAndAssociatedFiles> get_installed_files(const VcpkgPaths& paths, const StatusParagraphs& status_db);
|
2017-03-10 16:39:04 -08:00
|
|
|
|
|
|
|
|
|
|
|
struct CMakeVariable
|
|
|
|
{
|
2017-04-03 14:21:51 -07:00
|
|
|
CMakeVariable(const CWStringView varname, const wchar_t* varvalue);
|
|
|
|
CMakeVariable(const CWStringView varname, const std::string& varvalue);
|
|
|
|
CMakeVariable(const CWStringView varname, const std::wstring& varvalue);
|
|
|
|
CMakeVariable(const CWStringView varname, const fs::path& path);
|
2017-03-10 16:39:04 -08:00
|
|
|
|
|
|
|
std::wstring s;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::wstring make_cmake_cmd(const fs::path& cmake_exe, const fs::path& cmake_script, const std::vector<CMakeVariable>& pass_variables);
|
|
|
|
|
2016-09-18 20:50:08 -07:00
|
|
|
} // namespace vcpkg
|