xcal
基于 C++23 的现代图形渲染引擎
载入中...
搜索中...
未找到
xcmathConfig.h
浏览该文件的文档.
1#pragma once
2#ifndef XCMATH_CONFIG_H
3#define XCMATH_CONFIG_H
4
5#ifdef XCMATH_EXPORTS
6# if defined(_WIN32) || defined(_WIN64)
7# define XCMATH_API __declspec(dllexport)
8# elif defined(__GNUC__) || defined(__clang__)
9# define XCMATH_API __attribute__((visibility("default")))
10# else
11# define XCMATH_API
12# endif
13#else
14# define XCMATH_API
15#endif
16
17#endif // XCMATH_CONFIG_H