summaryrefslogtreecommitdiffstats
path: root/Modules/FindXercesC.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Modules: Make imported targets fall back to `Release`Brad King2016-08-031-7/+7
| | | | | | | | | | | | Find modules only detect Debug and Release configurations. All other configurations will fall back to the configuration listed as the first entry in `IMPORTED_CONFIGURATIONS`. Switch the order so that `Release` is listed first, as this is a better fallback than `Debug` for the `RelWithDebInfo` and `MinSizeRel` configurations. See issue #16091. This approach is recommended by documentation in `cmake-developer(7)` added by commit v3.2.0-rc1~286^2~1 (Help: Document IMPORTED_CONFIGURATIONS target property for Find modules, 2014-12-04).
* FindXercesC: Add imported targets and unit testRoger Leigh2015-11-231-10/+57
|
* FindXercesC: Add support for 3D_1 variant of the libraryRoger Leigh2015-08-141-1/+1
| | | | | | | This version is generated by the Windows Visual Studio project files for unknown reasons, but is required to pick up the debug version of the library created by current versions of Xerces-C.
* FindXercesC: Find debug and release libraries separatelyRoger Leigh2015-08-141-4/+12
|
* FindXercesC: Also search for xerces-c_2 (#15648)Roger Leigh2015-07-131-1/+1
| | | | This is the previous stable release name used on Windows.
* FindXercesC: Find versioned library on WindowsRoger Leigh2015-07-081-1/+1
|
* Modules: Rename FindXerces to FindXercesCBrad King2014-12-041-0/+85
The FindXerces module was added in commit v3.1.0-rc1~155^2 (FindXerces: New module to find Apache Xerces-C++, 2014-08-17). However, there are two implementations of Xerces, one in C++: http://xerces.apache.org/xerces-c/ and one in Java: http://xerces.apache.org/xerces-j/ Rename FindXerces to FindXercesC to clarify that it is about the C++ implementation. While at it, add the missing CMake 3.1 release note about this module. Suggested-by: Erik Sjölund <erik.sjolund@gmail.com>