14 lines
237 B
C++
14 lines
237 B
C++
#pragma once
|
|
#include "grbc/ext.h"
|
|
|
|
struct Profile {
|
|
std::string name;
|
|
|
|
std::vector<std::string> compiler_flags;
|
|
std::vector<std::string> linker_flags;
|
|
};
|
|
|
|
/**
|
|
* Get the grbc profiles extension
|
|
*/
|
|
Extension grbc_profiles(); |