Explicitly export EFL symbols

This commit is contained in:
Scott Anderson 2018-02-19 14:26:40 +13:00
parent f27c0b44b8
commit 86269052eb
54 changed files with 397 additions and 2 deletions

10
include/util/defs.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef UTIL_DEFS_H
#define UTIL_DEFS_H
#ifdef __GNUC__
#define WLR_API __attribute__((visibility("default")))
#else
#define WLR_API
#endif
#endif