Start working on build system.
This commit is contained in:
parent
4b308f6c32
commit
521486be62
88 changed files with 1065 additions and 349 deletions
22
src/base/compiler/BuildLibrary.h
Normal file
22
src/base/compiler/BuildLibrary.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
#pragma once
|
||||
|
||||
#include "FileSystemPath.h"
|
||||
#include "String.h"
|
||||
|
||||
class BuildLibrary
|
||||
{
|
||||
public:
|
||||
BuildLibrary() = default;
|
||||
|
||||
BuildLibrary(const FileSystemPath& build_config);
|
||||
|
||||
Status scan();
|
||||
|
||||
const Vector<FileSystemPath>& get_sources() const;
|
||||
|
||||
private:
|
||||
FileSystemPath m_build_config;
|
||||
Vector<FileSystemPath> m_sources;
|
||||
Vector<FileSystemPath> m_includes;
|
||||
String m_name;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue