ic-macros  0.1.5
pragma_message.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2023, Intercreate, Inc.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #pragma once
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 
14 #define _IC_DO_PRAGMA(x) _Pragma(#x)
15 
17 #define IC_BUILD_MESSAGE(msg) _IC_DO_PRAGMA(message("Build message - " #msg))
18 
19 #ifdef __cplusplus
20 }
21 #endif