add_definitions(-DBUILDING_DLL)

set(include_SOURCES
  CustomAsyncDataReader.h
  CustomAsyncBufferObject.h
  CustomAsyncBufferCache.h
)

set(src_SOURCES
  CustomAsyncDataReader.cxx
  CustomAsyncBufferObject.cxx
  CustomAsyncBufferCache.cxx
)

add_oiv_library(CustomAsyncDataReader
  ${src_SOURCES} 
  ${include_SOURCES} 
)


set(resources_SOURCES
  scenegraph.iv
  interface.iv
)

add_oiv_executable(LDMAsyncCache
  main.cxx
  ${resources_SOURCES}
)
target_link_libraries(LDMAsyncCache CustomAsyncDataReader ${VolumeViz_LIBRARIES} ${DialogViz_LIBRARIES})

create_vcproj_hierarchy("Resource Files" ./${resources_SOURCES})
