-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuildTypeHelper.hpp
More file actions
27 lines (23 loc) · 858 Bytes
/
Copy pathBuildTypeHelper.hpp
File metadata and controls
27 lines (23 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef RUNCPP2_DATA_BUILD_TYPE_HELPER_HPP
#define RUNCPP2_DATA_BUILD_TYPE_HELPER_HPP
#include "runcpp2/Data/BuildType.hpp"
#include "runcpp2/Data/FilesTypesInfo.hpp"
#include "runcpp2/Data/Profile.hpp"
#include "ghc/filesystem.hpp"
namespace runcpp2
{
namespace Data
{
namespace BuildTypeHelper
{
bool NeedsLinking(BuildType buildType);
bool GetPossibleOutputPaths(const ghc::filesystem::path& buildDir,
const std::string& scriptName,
const Profile& profile,
const BuildType buildType,
std::vector<ghc::filesystem::path>& outPaths,
std::vector<bool>& outIsRunnable);
}
}
}
#endif