aboutsummaryrefslogtreecommitdiffstats
path: root/apiextractormacros.h
Commit message (Collapse)AuthorAgeFilesLines
* Fixed compilation error for gcc versions < 4Jerzy Kozera2012-03-091-1/+1
| | | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug 1008 - "ApiExtractor Cygwin patch"Yaakov2012-03-091-1/+1
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug 731 - "Can't specify more than a single 'since' argument"Hugo Parente Lima2012-03-091-6/+9
|
* Use CMake DEFINES to export symbols.Renato Filho2012-03-091-2/+2
| | | | | Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix windows macros for dll export/import.Hugo Lima2009-11-181-2/+2
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* APIExtractor is a huge amount of legacy code inherited from QtScriptGenerator,Hugo Lima2009-11-131-0/+20
but QtScriptGenerator itself isn't a library, this explains why libapiextractor does not care about things that every library SHOULD care, symbol visibility and binary compatibility. This commit adds symbol visibility rules to libapiextractor as the first step to make libapiextractor aware of binary compatibility. This is also needed if we want to be able to compile and use libapiextractor under Windows. Note: Not all symbols were made public, just the symbols needed by shiboken, boostpython and doc generators, because IMHO libapiextractor needs some love and a API review. More symbols could be added later if needed. Reviewed by Renato Araujo <renato.filho@openbossa.org>