#depends on OPENCL being found...
include_directories( ${BRL_INCLUDE_DIR}/bbas )
include_directories( ${BRL_INCLUDE_DIR} )

# TIFF and GEOTIFF needed for extracting coordinate information from buckeye lidar images
include(${VXL_CMAKE_DIR}/FindTIFF.cmake)
if(TIFF_FOUND)
  include_directories(${TIFF_INCLUDE_DIR})
endif()

include( ${VXL_CMAKE_DIR}/FindGEOTIFF.cmake)
if(GEOTIFF_FOUND)
  include_directories( ${GEOTIFF_INCLUDE_DIR} )
endif()


set(boxm2_ocl_pro_sources
    boxm2_ocl_processes.h
    boxm2_ocl_register.h                     boxm2_ocl_register.cxx
    processes/boxm2_ocl_filter_process.h
    processes/boxm2_ocl_kernel_filter_process.h
    processes/boxm2_ocl_kernel_vector_filter_process.h
   )

aux_source_directory(Templates boxm2_ocl_pro_sources)
aux_source_directory(processes boxm2_ocl_pro_sources)

vxl_add_library(LIBRARY_NAME boxm2_ocl_pro LIBRARY_SOURCES  ${boxm2_ocl_pro_sources} )
target_link_libraries(boxm2_ocl_pro boxm2_ocl_algo boct brdb ${VXL_LIB_PREFIX}vbl_io expatpp ${VXL_LIB_PREFIX}vpgl ${VXL_LIB_PREFIX}vgl ${VXL_LIB_PREFIX}vgl_xio ${VXL_LIB_PREFIX}vil ${VXL_LIB_PREFIX}vul ${VXL_LIB_PREFIX}vbl ${VXL_LIB_PREFIX}vsl ${VXL_LIB_PREFIX}vcl bvpl_kernels brad bsta_algo vpgl_pro)
# Need vpgl_pro only for the instantiation of brdb_value_t<vbl_smart_ptr<vpgl_camera<double> > >

#tests
if( BUILD_TESTING )
  add_subdirectory(tests)
endif()
