grbc/include/grbc/ext_profiles.h
2024-09-29 14:51:11 -04:00

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();