[xsd-users] cmake module for building xsd application
frederic heem
frederic.heem at telsey.it
Wed Mar 29 10:40:00 EST 2006
Hi,
Please find attached 2 files FindXercesC.make and FindXsd.cmake
These are used with the multiplatform build system cmake
Hope it helps
Cheers
--
***** ----- ***** ----- *****
Frederic Heem
Software Designer
R&D - Telsey SpA Telecommunications
Viale Industria, 1
31055 Quinto di Treviso (TV)
ITALY
Tel. direct phone: (+39) 0422 377819
Tel. (+39) 0422 377711
Fax. (+39) 0422 470920
website ==> www.telsey.it
-------------- next part --------------
# Locate Xsd from code synthesis include paths and binary
# Xsd can be found at http://codesynthesis.com/products/xsd/
# Written by Frederic Heem, frederic.heem _at_ telsey.it
# This module defines
# XSD_INCLUDE_DIR, where to find elements.hxx, etc.
# XSD_EXECUTABLE, where is the xsd compiler
# XSD_FOUND, If false, don't try to use xsd
FIND_PATH(XSD_INCLUDE_DIR cxx/parser/elements.hxx
"[HKEY_CURRENT_USER\\software\\xsd\\include]"
"[HKEY_CURRENT_USER]\\xsd\\include]"
$ENV{XSDDIR}/include
/usr/local/include/xsd
/usr/include/xsd
)
FIND_PROGRAM(XSD_EXECUTABLE
NAMES
xsd
PATHS
"[HKEY_CURRENT_USER\\xsd\\bin"
$ENV{XSDDIR}/bin
/usr/local/bin
/usr/bin
)
# if the include and the program are found then we have it
IF(XSD_INCLUDE_DIR)
IF(XSD_EXECUTABLE)
SET( XSD_FOUND "YES" )
ENDIF(XSD_EXECUTABLE)
ENDIF(XSD_INCLUDE_DIR)
MARK_AS_ADVANCED(
XSD_INCLUDE_DIR
XSD_EXECUTABLE
)
-------------- next part --------------
# Locate Xerces-C include paths and libraries
# Xerces-C can be found at http://xml.apache.org/xerces-c/
# Written by Frederic Heem, frederic.heem _at_ telsey.it
# This module defines
# XERCESC_INCLUDE_DIR, where to find ptlib.h, etc.
# XERCESC_LIBRARIES, the libraries to link against to use pwlib.
# XERCESC_FOUND, If false, don't try to use pwlib.
FIND_PATH(XERCESC_INCLUDE_DIR xercesc/dom/DOM.hpp
"[HKEY_CURRENT_USER\\software\\xerces-c\\src]"
"[HKEY_CURRENT_USER\\xerces-c\\src]"
$ENV{XERCESCROOT}/src/
/usr/local/include
/usr/include
)
FIND_LIBRARY(XERCESC_LIBRARIES
NAMES
xerces-c
PATHS
"[HKEY_CURRENT_USER\\software\\xerces-c\\lib]"
"[HKEY_CURRENT_USER\\xerces-c\\lib]"
$ENV{XERCESCROOT}/lib
/usr/local/lib
/usr/lib
)
# if the include a the library are found then we have it
IF(XERCESC_INCLUDE_DIR)
IF(XERCESC_LIBRARIES)
SET( XERCESC_FOUND "YES" )
ENDIF(XERCESC_LIBRARIES)
ENDIF(XERCESC_INCLUDE_DIR)
MARK_AS_ADVANCED(
XERCESC_INCLUDE_DIR
XERCESC_LIBRARIES
)
More information about the xsd-users
mailing list