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