Пример использования генерируемых заголовочных файлов
This commit is contained in:
parent
3520c03452
commit
b14cb9cffc
@ -1,3 +1,6 @@
|
||||
#include "compiler_features.hpp"
|
||||
#include "cmlib_private_config.hpp"
|
||||
|
||||
#include <iostream>
|
||||
#include <boost/range/counting_range.hpp>
|
||||
|
||||
@ -13,8 +16,16 @@ int32_t nsum(int32_t i = 0)
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
// Значение из compiler_features.hpp
|
||||
std::cout << CMLIB_EXAMPLE_APP_COMPILER_VERSION_MAJOR << std::endl;
|
||||
// Значение из cmlib_private_config.hpp
|
||||
std::cout << CMLIB_BUILD_TYPE << std::endl;
|
||||
// Значение из cmlib_private_config.hpp
|
||||
std::cout << CMLIB_BUILD_DATE << std::endl;
|
||||
|
||||
auto s = nsum( argc );
|
||||
std::cout << s << std::endl;
|
||||
|
||||
return ( s );
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user