4#include "../Containers/Vector.h"
5#include "../Foundation/Result.h"
6#include "../Strings/String.h"
25 Parameter(
const T& other) : value(other) {}
26 operator const T&()
const {
return value; }
28 bool hasBeenSet()
const {
return valueSet; }
29 void unset() { valueSet =
false; }
40 bool valueSet =
false;
60 case Unknown:
return "unknown";
61 case Windows:
return "windows";
62 case Apple:
return "apple";
63 case Linux:
return "linux";
64 case Wasm:
return "wasm";
66 Assert::unreachable();
87 case Any:
return "Any";
88 case Intel32:
return "Intel32";
89 case Intel64:
return "Intel64";
90 case Arm64:
return "Arm64";
91 case Wasm:
return "Wasm";
93 Assert::unreachable();
113 case XCode:
return "XCode";
116 case Make:
return "Make";
118 Assert::unreachable();
136 case Debug:
return "Debug"_a8;
137 case Release:
return "Release"_a8;
139 Assert::unreachable();
161 State state = Disabled;
162 Type type = MSVCWarning;
167 Warning(
State state,
uint32_t number) : state(state), type(MSVCWarning), number(number) {}
291 Assert::unreachable();
297 [[nodiscard]]
static constexpr StringView getStandardBuildDirectory()
299 return "$(TARGET_OS)-$(TARGET_ARCHITECTURES)-$(BUILD_SYSTEM)-$(COMPILER)-$(CONFIGURATION)";
418 String intermediatesDirectory;
420 String packagesCacheDirectory;
421 String packagesInstallDirectory;
472 Type action = Configure;
unsigned int uint32_t
Platform independent (4) bytes unsigned int.
Definition: PrimitiveTypes.h:38
Build Architecture (Processor / Instruction set)
Definition: Build.h:72
static constexpr StringView toString(Type type)
Get StringView from Architecture::Type.
Definition: Build.h:83
Compile flags (include paths, preprocessor defines etc.)
Definition: Build.h:172
bool addIncludePaths(Span< const StringView > includePaths)
Adds paths to include paths list.
Vector< Warning > warnings
Warnings list.
Definition: Build.h:175
bool addDefines(Span< const StringView > defines)
Adds some pre-processor defines.
bool disableWarnings(Span< const StringView > name)
Disable a warning for non-MSVC compiler.
Vector< String > defines
Preprocessor defines list.
Definition: Build.h:174
bool disableGCCWarnings(Span< const StringView > name)
Disable a warning for GCC.
Vector< String > includePaths
Include search paths list.
Definition: Build.h:173
bool disableClangWarnings(Span< const StringView > name)
Disable a warning for Clang.
bool disableWarnings(Span< const uint32_t > number)
Disable a warning for MSVC.
Parameter< bool > enableStdCpp
Enable and include C++ Standard Library.
Definition: Build.h:182
Parameter< bool > enableASAN
Enable Address Sanitizer.
Definition: Build.h:179
Parameter< bool > enableRTTI
Enable C++ Runtime Type Identification.
Definition: Build.h:180
Parameter< bool > enableExceptions
Enable C++ Exceptions.
Definition: Build.h:181
static Result merge(Span< const CompileFlags * > opinions, CompileFlags &flags)
Merges opinions about flags into target flags.
Parameter< Optimization::Type > optimizationLevel
Optimization level.
Definition: Build.h:177
Parameter< bool > enableCoverage
Enables code coverage instrumentation.
Definition: Build.h:183
Visual Studio platform toolset.
Definition: Build.h:276
Groups SC::Build::CompileFlags and SC::Build::LinkFlags for a given SC::Build::Architecture.
Definition: Build.h:265
bool applyPreset(const Project &project, Preset newPreset, const Parameters ¶meters)
Set compile flags depending on the given Preset.
String intermediatesPath
Obj path. If relative, it's appended to _Intermediates relative to .
Definition: Build.h:304
String outputPath
Exe path. If relative, it's appended to _Outputs relative to .
Definition: Build.h:303
CompileFlags compile
Configuration compile flags.
Definition: Build.h:306
String name
Configuration name.
Definition: Build.h:302
static constexpr StringView PresetToString(Preset preset)
Convert Preset to StringView.
Definition: Build.h:283
LinkFlags link
Configuration link flags.
Definition: Build.h:307
Architecture::Type architecture
Restrict this configuration to a specific architecture.
Definition: Build.h:309
Preset
A pre-made preset with pre-configured set of options.
Definition: Build.h:268
@ Debug
Compile for debug, enabling ASAN (if not set on project and never on VStudio)
@ Release
Compile for release.
@ DebugCoverage
Compile for debug, enabling coverage (sets ClangCL for VStudio)
VisualStudio visualStudio
Customize VisualStudio platformToolset.
Definition: Build.h:280
Top level build description holding all Workspace objects.
Definition: Build.h:443
Result configure(StringView projectName, const Parameters ¶meters) const
Generates projects for all workspaces, with specified parameters at given root path.
Vector< Workspace > workspaces
Workspaces to be generated.
Definition: Build.h:444
Collects all directories used during build generation.
Definition: Build.h:416
Describes an additive / subtractive selection of files.
Definition: Build.h:232
String mask
Mask suffix (can contain *)
Definition: Build.h:241
Action
Add or removes from selection.
Definition: Build.h:235
@ Remove
Remove files.
Definition: Build.h:237
@ Add
Add files.
Definition: Build.h:236
String base
Base path (not containing *)
Definition: Build.h:240
Action action
Operation type (add or remove files)
Definition: Build.h:239
Build system generator (Xcode / Visual Studio)
Definition: Build.h:99
static constexpr StringView toString(Type type)
Get StringView from Generator::Type.
Definition: Build.h:109
Type
Definition: Build.h:101
@ Make
Generate posix makefiles.
Definition: Build.h:105
@ VisualStudio2022
Generate projects for Visual Studio 2022.
Definition: Build.h:103
@ VisualStudio2019
Generate projects for Visual Studio 2019.
Definition: Build.h:104
@ XCode
Generate projects for XCode (Version 14+)
Definition: Build.h:102
Link flags (library paths, libraries to link, etc.)
Definition: Build.h:215
static Result merge(Span< const LinkFlags * > opinions, LinkFlags &flags)
Merges opinions about flags into target flags.
Vector< String > frameworksIOS
Frameworks to link on iOS only.
Definition: Build.h:219
Vector< String > frameworksMacOS
Frameworks to link on macOS only.
Definition: Build.h:220
Vector< String > libraries
Names of libraries to link.
Definition: Build.h:217
Vector< String > frameworks
Frameworks to link on both iOS and macOS.
Definition: Build.h:218
Vector< String > libraryPaths
Libraries search paths list.
Definition: Build.h:216
Parameter< bool > enableASAN
Enable linking Address Sanitizer.
Definition: Build.h:222
Optimization level (Debug / Release)
Definition: Build.h:124
static constexpr StringView toString(Type type)
Get StringView from Optimization::Type.
Definition: Build.h:132
Type
Definition: Build.h:126
@ Debug
Optimizations set to debug.
Definition: Build.h:127
@ Release
Optimizations set to release.
Definition: Build.h:128
Describes a specific set of platforms, architectures and build generators to generate projects for.
Definition: Build.h:427
Platform::Type platform
Platform to generate.
Definition: Build.h:428
Generator::Type generator
Build system types to generate.
Definition: Build.h:430
Architecture::Type architecture
Architecture to generate.
Definition: Build.h:429
Groups multiple Configuration and source files with their compile and link flags.
Definition: Build.h:327
const Configuration * getConfiguration(StringView configurationName) const
Get Configuration with the matching configurationName
bool addDefines(Span< const StringView > defines)
Adds some pre-processor defines.
bool addLinkLibraryPaths(Span< const StringView > libraryPaths)
Adds paths to libraries paths list.
Vector< SourceFiles > filesWithSpecificFlags
List of files with specific flags different from project/config.
Definition: Build.h:341
Configuration * getConfiguration(StringView configurationName)
Get Configuration with the matching configurationName
TargetType::Type targetType
Type of build artifact.
Definition: Build.h:331
Result validate() const
Validates this project for it to contain a valid combination of flags.
String rootDirectory
Project root directory.
Definition: Build.h:334
String targetName
Project target name.
Definition: Build.h:335
bool addLinkFrameworksIOS(Span< const StringView > frameworks)
Add frameworks only for iOS.
bool addLinkLibraries(Span< const StringView > linkLibraries)
Adds libraries to be linked.
bool addLinkFrameworksMacOS(Span< const StringView > frameworks)
Add frameworks only for macOS.
bool addSpecificFileFlags(SourceFiles selection)
Add a set of flags that apply to some files only.
bool setRootDirectory(StringView file)
Set root directory for this project (all relative paths will be relative to this one)
bool addIncludePaths(Span< const StringView > includePaths)
Adds paths to include paths list.
Vector< Configuration > configurations
Build configurations created inside the project.
Definition: Build.h:343
SourceFiles files
Project source files with their associated compile flags.
Definition: Build.h:338
bool removeFiles(StringView subdirectory, StringView filter)
Remove files matching a filter, to remove only a specific file type after Project::addDirectory.
LinkFlags link
Linker flags applied to all files in the project.
Definition: Build.h:339
String name
Project name.
Definition: Build.h:333
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.
bool addFiles(StringView subdirectory, StringView filter)
Add all source or header/inline files from a subdirectory (relative to project root) matching the giv...
String iconPath
Icon location.
Definition: Build.h:336
bool addLinkFrameworks(Span< const StringView > frameworks)
Add frameworks shared with all apple os.
bool addFile(StringView singleFile)
Add a single source or header/inline file to the project, relative to project root.
A selection of files with their associated compile flags.
Definition: Build.h:252
bool removeSelection(StringView directory, StringView filter)
Remove some files from a directory to the selection.
bool addSelection(StringView directory, StringView filter)
Add some files from a directory to the selection.
Type of target artifact to build (executable, library)
Definition: Build.h:316
Type
Type of artifact.
Definition: Build.h:319
@ ConsoleExecutable
Create console executable program.
Definition: Build.h:320
@ GUIApplication
Create graphical application program.
Definition: Build.h:321
Describe a compile warning to disable.
Definition: Build.h:145
Type
What compiler this warning applies to.
Definition: Build.h:154
State
Warning disabled state.
Definition: Build.h:148
Groups multiple Project together with shared compile and link flags.
Definition: Build.h:403
String name
Workspace name.
Definition: Build.h:407
Vector< Project > projects
List of projects in this workspace.
Definition: Build.h:408
Result validate() const
Validates all projects in this workspace.
An ascii string used as boolean result. SC_TRY macro forwards errors to caller.
Definition: Result.h:12
View over a contiguous sequence of items (pointer + size in elements).
Definition: Span.h:32
A non-modifiable owning string with associated encoding.
Definition: String.h:29
Non-owning view over a range of characters with UTF Encoding.
Definition: StringView.h:47
A contiguous sequence of heap allocated elements.
Definition: Vector.h:189