mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-07-27 09:37:19 +02:00

* [vcpkg] Consolidate several internal parsers together (packagespecs + logicexpression + control) and enhance error messages * [vcpkg] Migrate Build-Depends parsing to new framework * [vcpkg] Fix tests. Re-enable underscores in feature names due to libwebp[vwebp_sdl] -- todo: rename this feature and remove underscores.
13 lines
335 B
C++
13 lines
335 B
C++
#pragma once
|
|
|
|
#include <vcpkg/vcpkgpaths.h>
|
|
|
|
namespace vcpkg::Export
|
|
{
|
|
extern const CommandStructure COMMAND_STRUCTURE;
|
|
|
|
void perform_and_exit(const VcpkgCmdArguments& args, const VcpkgPaths& paths, Triplet default_triplet);
|
|
|
|
void export_integration_files(const fs::path& raw_exported_dir_path, const VcpkgPaths& paths);
|
|
}
|