Sane C++ Libraries
C++ Platform Abstraction Libraries
Build.h
1// Copyright (c) Stefano Cristiano
2// SPDX-License-Identifier: MIT
3#pragma once
4#include "../Containers/Vector.h"
5#include "../Foundation/Result.h"
6#include "../Strings/String.h"
7
8namespace SC
9{
11namespace Build
12{
15
18struct Parameters;
19struct Project;
20
21template <typename T>
23{
24 Parameter() = default;
25 Parameter(const T& other) : value(other) {}
26 operator const T&() const { return value; }
27
28 bool hasBeenSet() const { return valueSet; }
29 void unset() { valueSet = false; }
30
31 Parameter& operator=(const T& other)
32 {
33 value = other;
34 valueSet = true;
35 return *this;
36 }
37
38 private:
39 T value;
40 bool valueSet = false;
41};
42
45{
46 enum Type
47 {
48 Unknown = 0,
49 Windows,
50 Apple,
51 Linux,
52 Wasm
53 };
54
56 static constexpr StringView toString(Type type)
57 {
58 switch (type)
59 {
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";
65 }
66 Assert::unreachable();
67 }
68};
69
72{
73 enum Type
74 {
75 Any = 0,
76 Intel32,
77 Intel64,
78 Arm64,
79 Wasm
80 };
81
83 static constexpr StringView toString(Type type)
84 {
85 switch (type)
86 {
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";
92 }
93 Assert::unreachable();
94 }
95};
96
99{
100 enum Type
101 {
106 };
107
109 static constexpr StringView toString(Type type)
110 {
111 switch (type)
112 {
113 case XCode: return "XCode";
114 case VisualStudio2022: return "VisualStudio2022";
115 case VisualStudio2019: return "VisualStudio2019";
116 case Make: return "Make";
117 }
118 Assert::unreachable();
119 }
120};
121
124{
125 enum Type
126 {
129 };
130
132 static constexpr StringView toString(Type type)
133 {
134 switch (type)
135 {
136 case Debug: return "Debug"_a8;
137 case Release: return "Release"_a8;
138 }
139 Assert::unreachable();
140 }
141};
142
145{
147 enum State
148 {
149 Disabled // TODO: Add enabled state
150 };
151
153 enum Type
154 {
155 MSVCWarning,
156 NotMSVCWarning,
157 ClangWarning,
158 GCCWarning,
159 };
160
161 State state = Disabled;
162 Type type = MSVCWarning;
163 StringView name;
164 uint32_t number = 0;
165
166 Warning(State state, StringView name, Type type = NotMSVCWarning) : state(state), type(type), name(name) {}
167 Warning(State state, uint32_t number) : state(state), type(MSVCWarning), number(number) {}
168};
169
172{
176
178
184
189
191 [[nodiscard]] bool disableWarnings(Span<const uint32_t> number);
192
194 [[nodiscard]] bool disableWarnings(Span<const StringView> name);
195
198
201
204
207
208 private:
209 friend struct LinkFlags;
210 struct Internal;
211};
212
215{
221
223
228};
229
232{
235 {
237 Remove
238 };
242
243 bool operator==(const FilesSelection& other) const
244 {
245 // collectUniqueRootPaths doesn't care about de-duplicating also operation
246 return base == other.base and mask == other.mask;
247 }
248};
249
252{
253 Vector<FilesSelection> selection;
254 CompileFlags compile;
255
257 [[nodiscard]] bool addSelection(StringView directory, StringView filter);
258
260 [[nodiscard]] bool removeSelection(StringView directory, StringView filter);
261};
262
265{
267 enum class Preset
268 {
269 Debug,
271 Release,
272 };
273
276 {
277 StringView platformToolset;
278 };
279
281
283 [[nodiscard]] static constexpr StringView PresetToString(Preset preset)
284 {
285 switch (preset)
286 {
287 case Configuration::Preset::Debug: return "Debug";
288 case Configuration::Preset::DebugCoverage: return "DebugCoverage";
289 case Configuration::Preset::Release: return "Release";
290 }
291 Assert::unreachable();
292 }
293
295 [[nodiscard]] bool applyPreset(const Project& project, Preset newPreset, const Parameters& parameters);
296
297 [[nodiscard]] static constexpr StringView getStandardBuildDirectory()
298 {
299 return "$(TARGET_OS)-$(TARGET_ARCHITECTURES)-$(BUILD_SYSTEM)-$(COMPILER)-$(CONFIGURATION)";
300 }
301
305
308
309 Architecture::Type architecture = Architecture::Any;
310
312};
313
316{
318 enum Type
319 {
322 };
323};
324
327{
328 Project() = default;
330
332
337
340
342
344
346 [[nodiscard]] bool setRootDirectory(StringView file);
347
349 [[nodiscard]] bool addPresetConfiguration(Configuration::Preset preset, const Parameters& parameters,
350 StringView configurationName = StringView());
351
353 [[nodiscard]] Configuration* getConfiguration(StringView configurationName);
354
356 [[nodiscard]] const Configuration* getConfiguration(StringView configurationName) const;
357
363 [[nodiscard]] bool addFiles(StringView subdirectory, StringView filter);
364
366 [[nodiscard]] bool addFile(StringView singleFile);
367
369 [[nodiscard]] bool addSpecificFileFlags(SourceFiles selection);
370
372 [[nodiscard]] bool addIncludePaths(Span<const StringView> includePaths);
373
375 [[nodiscard]] bool addLinkLibraryPaths(Span<const StringView> libraryPaths);
376
378 [[nodiscard]] bool addLinkLibraries(Span<const StringView> linkLibraries);
379
381 [[nodiscard]] bool addLinkFrameworks(Span<const StringView> frameworks);
382
384 [[nodiscard]] bool addLinkFrameworksMacOS(Span<const StringView> frameworks);
385
387 [[nodiscard]] bool addLinkFrameworksIOS(Span<const StringView> frameworks);
388
390 [[nodiscard]] bool addDefines(Span<const StringView> defines);
391
395 [[nodiscard]] bool removeFiles(StringView subdirectory, StringView filter);
396
398 [[nodiscard]] Result validate() const;
399};
400
403{
404 Workspace() = default;
406
409
411 [[nodiscard]] Result validate() const;
412};
413
416{
417 String projectsDirectory;
418 String intermediatesDirectory;
419 String outputsDirectory;
420 String packagesCacheDirectory;
421 String packagesInstallDirectory;
422 String libraryDirectory;
423};
424
427{
428 Platform::Type platform;
429 Architecture::Type architecture;
431
432 Parameters()
433 {
434 platform = Platform::Linux;
435 architecture = Architecture::Any;
437 }
438 Directories directories;
439};
440
443{
445
449 Result configure(StringView projectName, const Parameters& parameters) const;
450};
451
453
454//-----------------------------------------------------------------------------------------------------------------------
455// Implementations Details
456//-----------------------------------------------------------------------------------------------------------------------
457
458struct Action
459{
460 enum Type
461 {
462 Configure,
463 Compile,
464 Run,
465 Print,
466 Coverage
467 };
468 using ConfigureFunction = Result (*)(Build::Definition& definition, const Build::Parameters& parameters);
469
470 static Result execute(const Action& action, ConfigureFunction configure, StringView projectName);
471
472 Type action = Configure;
473
474 Parameters parameters;
475 StringView configuration;
476 StringView target;
477
478 private:
479 struct Internal;
480};
481
482// Defined inside SC-Build.cpp
483Result executeAction(const Action& action);
484} // namespace Build
485} // namespace SC
unsigned int uint32_t
Platform independent (4) bytes unsigned int.
Definition: PrimitiveTypes.h:38
Definition: Build.h:459
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 &parameters)
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 &parameters) 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
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
Definition: Build.h:23
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
Build Platform (Operating System)
Definition: Build.h:45
static constexpr StringView toString(Type type)
Get StringView from Platform::Type.
Definition: Build.h:56
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 &parameters, 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