You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
993 B

11 years ago
# - Try to find LCL
# Once done this will define
# LCL_FOUND - System has LibXml2
# LCL_INCLUDE_DIRS - The LibXml2 include directories
# LCL_LIBRARIES - The libraries needed to use LibXml2
# LCL_DEFINITIONS - Compiler switches required for using LibXml2
find_package(PkgConfig)
find_path(LCL_INCLUDE_DIR headers/TranslationUnit.h
HINTS "/home/gm/bachelor/lib/"
"/home/forgie/code/libclangpp/"
"/home/zalox/bachelor/libclang++/"
)
11 years ago
find_library(LCL_LIBRARY NAMES testlcl
HINTS "/home/gm/bachelor/lib/lib/"
"/home/forgie/code/libclangpp/lib/"
"/home/zalox/bachelor/libclang++/lib/"
)
11 years ago
set(LCL_LIBRARIES ${LCL_LIBRARY} )
set(LCL_INCLUDE_DIRS ${LCL_INCLUDE_DIR} )
include(FindPackageHandleStandardArgs)
# handle the QUIETLY and REQUIRED arguments and set LIBXML2_FOUND to TRUE
# if all listed variables are TRUE
find_package_handle_standard_args(LCL DEFAULT_MSG
LCL_LIBRARY LCL_INCLUDE_DIR)
mark_as_advanced(LCL_INCLUDE_DIR LCL_LIBRARY )