1 # - Try to find triangle
3 # If unset, try environment
6 set(TRIANGLE_DIR $ENV{TRIANGLE_DIR})
7 endif(NOT TRIANGLE_DIR)
9 find_library(TRIANGLE_LIBRARY NAMES triangle PATHS "${TRIANGLE_DIR}/lib")
10 message(STATUS ${TRIANGLE_LIBRARY})
13 include_directories("${TRIANGLE_DIR}/include")
14 endif(TRIANGLE_LIBRARY)