TCM 1.1.0
A CMake module to reduce boilerplate
Loading...
Searching...
No Matches
my_lib.h
1//
2// Created by tdebl on 18/12/2024.
3//
4
5#ifndef MY_LIB_H
6#define MY_LIB_H
7
8#include <my_lib/export.h>
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
17MY_LIB_API int my_lib_value();
18
19#ifdef __cplusplus
20}
21#endif
22
23#endif //MY_LIB_H