Groups multiple Configuration and source files with their compile and link flags. More...
#include <Build.h>
Public Member Functions | |
Project (TargetType::Type targetType, StringView name) | |
bool | setRootDirectory (StringView file) |
Set root directory for this project (all relative paths will be relative to this one) More... | |
bool | addPresetConfiguration (Configuration::Preset preset, const Parameters ¶meters, StringView configurationName=StringView()) |
Add a configuration with a given name, started by cloning options of a specific Preset. More... | |
Configuration * | getConfiguration (StringView configurationName) |
Get Configuration with the matching configurationName More... | |
const Configuration * | getConfiguration (StringView configurationName) const |
Get Configuration with the matching configurationName More... | |
bool | addFiles (StringView subdirectory, StringView filter) |
Add all source or header/inline files from a subdirectory (relative to project root) matching the given filter. More... | |
bool | addFile (StringView singleFile) |
Add a single source or header/inline file to the project, relative to project root. More... | |
bool | addSpecificFileFlags (SourceFiles selection) |
Add a set of flags that apply to some files only. More... | |
bool | addIncludePaths (Span< const StringView > includePaths) |
Adds paths to include paths list. More... | |
bool | addLinkLibraryPaths (Span< const StringView > libraryPaths) |
Adds paths to libraries paths list. More... | |
bool | addLinkLibraries (Span< const StringView > linkLibraries) |
Adds libraries to be linked. More... | |
bool | addLinkFrameworks (Span< const StringView > frameworks) |
Add frameworks shared with all apple os. More... | |
bool | addLinkFrameworksMacOS (Span< const StringView > frameworks) |
Add frameworks only for macOS. More... | |
bool | addLinkFrameworksIOS (Span< const StringView > frameworks) |
Add frameworks only for iOS. More... | |
bool | addDefines (Span< const StringView > defines) |
Adds some pre-processor defines. More... | |
bool | removeFiles (StringView subdirectory, StringView filter) |
Remove files matching a filter, to remove only a specific file type after Project::addDirectory. More... | |
Result | validate () const |
Validates this project for it to contain a valid combination of flags. More... | |
Public Attributes | |
TargetType::Type | targetType = TargetType::ConsoleExecutable |
Type of build artifact. More... | |
String | name |
Project name. More... | |
String | rootDirectory |
Project root directory. More... | |
String | targetName |
Project target name. More... | |
String | iconPath |
Icon location. More... | |
SourceFiles | files |
Project source files with their associated compile flags. More... | |
LinkFlags | link |
Linker flags applied to all files in the project. More... | |
Vector< SourceFiles > | filesWithSpecificFlags |
List of files with specific flags different from project/config. More... | |
Vector< Configuration > | configurations |
Build configurations created inside the project. More... | |
Groups multiple Configuration and source files with their compile and link flags.
bool SC::Build::Project::addDefines | ( | Span< const StringView > | defines | ) |
Adds some pre-processor defines.
bool SC::Build::Project::addFile | ( | StringView | singleFile | ) |
Add a single source or header/inline file to the project, relative to project root.
bool SC::Build::Project::addFiles | ( | StringView | subdirectory, |
StringView | filter | ||
) |
Add all source or header/inline files from a subdirectory (relative to project root) matching the given filter.
subdirectory | The subdirectory to search files from, absolute or relative to project root. No * allowed. |
filter | The suffix filter that is appended to subdirectory (can contain * ) |
.h
, .hpp
, .inl
) will be considered non-source files. bool SC::Build::Project::addIncludePaths | ( | Span< const StringView > | includePaths | ) |
Adds paths to include paths list.
bool SC::Build::Project::addLinkFrameworks | ( | Span< const StringView > | frameworks | ) |
Add frameworks shared with all apple os.
bool SC::Build::Project::addLinkFrameworksIOS | ( | Span< const StringView > | frameworks | ) |
Add frameworks only for iOS.
bool SC::Build::Project::addLinkFrameworksMacOS | ( | Span< const StringView > | frameworks | ) |
Add frameworks only for macOS.
bool SC::Build::Project::addLinkLibraries | ( | Span< const StringView > | linkLibraries | ) |
Adds libraries to be linked.
bool SC::Build::Project::addLinkLibraryPaths | ( | Span< const StringView > | libraryPaths | ) |
Adds paths to libraries paths list.
bool SC::Build::Project::addPresetConfiguration | ( | Configuration::Preset | preset, |
const Parameters & | parameters, | ||
StringView | configurationName = StringView() |
||
) |
Add a configuration with a given name, started by cloning options of a specific Preset.
bool SC::Build::Project::addSpecificFileFlags | ( | SourceFiles | selection | ) |
Add a set of flags that apply to some files only.
Configuration * SC::Build::Project::getConfiguration | ( | StringView | configurationName | ) |
Get Configuration with the matching configurationName
const Configuration * SC::Build::Project::getConfiguration | ( | StringView | configurationName | ) | const |
Get Configuration with the matching configurationName
bool SC::Build::Project::removeFiles | ( | StringView | subdirectory, |
StringView | filter | ||
) |
Remove files matching a filter, to remove only a specific file type after Project::addDirectory.
subdirectory | The subdirectory to search files into, absolute or relative to project root. No * allowed. |
filter | The suffix filter that is appended to subdirectory (can contain * ) |
bool SC::Build::Project::setRootDirectory | ( | StringView | file | ) |
Set root directory for this project (all relative paths will be relative to this one)
Result SC::Build::Project::validate | ( | ) | const |
Validates this project for it to contain a valid combination of flags.
Vector<Configuration> SC::Build::Project::configurations |
Build configurations created inside the project.
SourceFiles SC::Build::Project::files |
Project source files with their associated compile flags.
Vector<SourceFiles> SC::Build::Project::filesWithSpecificFlags |
List of files with specific flags different from project/config.
String SC::Build::Project::iconPath |
Icon location.
LinkFlags SC::Build::Project::link |
Linker flags applied to all files in the project.
TargetType::Type SC::Build::Project::targetType = TargetType::ConsoleExecutable |
Type of build artifact.