Generate documentation for all public headers

This commit is contained in:
Paweł Bylica 2018-06-26 11:51:30 +02:00
parent 45fd294efb
commit a3f06bbc36
No known key found for this signature in database
GPG Key ID: 7A0C037434FE77EF
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ WARN_LOGFILE =
#---------------------------------------------------------------------------
# Configuration options related to the input files
#---------------------------------------------------------------------------
INPUT = include/evmc/evmc.h
INPUT = include/evmc/
INPUT_ENCODING = UTF-8
FILE_PATTERNS =
RECURSIVE = NO

View File

@ -8,5 +8,5 @@
#ifdef _MSC_VER
#define EVMC_EXPORT __declspec(dllexport)
#else
#define EVMC_EXPORT __attribute__ ((visibility ("default")))
#define EVMC_EXPORT __attribute__((visibility("default")))
#endif