26 lines
No EOL
498 B
C++
26 lines
No EOL
498 B
C++
#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;
|
|
|
|
const Vector<FileSystemPath>& get_include_dirs() const;
|
|
|
|
const String& get_name() const;
|
|
|
|
private:
|
|
FileSystemPath m_build_config;
|
|
Vector<FileSystemPath> m_sources;
|
|
Vector<FileSystemPath> m_include_dirs;
|
|
String m_name;
|
|
}; |