Skip to content
Snippets Groups Projects

Install path

Merged Fernando Herrero requested to merge install_path into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
#edit the following line to add the librarie's header files
#edit the following line to add the librarie's header files
SET(name library_name)
SET(name library_name)
FIND_PATH(${name}_INCLUDE_DIRS ${name}.h /usr/include/iri/${name} /usr/local/include/iri/${name})
FIND_PATH(${name}_INCLUDE_DIRS ${name}.h /usr/local/include/iri/${name} /usr/include/iri/${name})
FIND_LIBRARY(${name}_LIBRARIES
FIND_LIBRARY(${name}_LIBRARIES
NAMES ${name}
NAMES ${name}
PATHS /usr/lib /usr/lib/iri/${name} /usr/local/lib /usr/local/lib/iri/${name})
PATHS /usr/local/lib/iri/${name} /usr/lib/iri/${name})
SET(${name}_INCLUDE_DIR ${${name}_INCLUDE_DIRS})
SET(${name}_INCLUDE_DIR ${${name}_INCLUDE_DIRS})
SET(${name}_LIBRARY ${${name}_LIBRARIES})
SET(${name}_LIBRARY ${${name}_LIBRARIES})
Loading