Revision f4ddfc35efe40a5625eb184dd0bd2d4cba930512 authored by Philippe Canal on 27 August 2011, 00:08:08 UTC, committed by Philippe Canal on 27 August 2011, 00:08:08 UTC
Make sure that the rule intended for a type are properly found if the targetClass does have exactly the canonical name (i.e. allow space variation and typedefs in the targetClass)


git-svn-id: http://root.cern.ch/svn/root/branches/v5-30-00-patches@40739 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent a284abf
Raw File
CMakeLists.txt
############################################################################
# CMakeLists.txt file for building ROOT io/xmlparser package
# @author Pere Mato, CERN
############################################################################

ROOT_USE_PACKAGE(io/io)
include_directories(${LIBXML2_INCLUDE_DIR})
add_definitions(${LIBXML2_DEFINITIONS})

ROOT_GENERATE_DICTIONARY(G__XMLParser *.h  LINKDEF LinkDef.h)
ROOT_GENERATE_ROOTMAP(XMLParser LINKDEF LinkDef.h )

ROOT_LINKER_LIBRARY(XMLParser *.cxx G__XMLParser.cxx  LIBRARIES ${LIBXML2_LIBRARIES} DEPENDENCIES Core)
ROOT_INSTALL_HEADERS()

back to top