#  Header files
file(GLOB BITS
cont-tree-iterator.h cont-tree-alloc.h cont-binary-tree.h
)


#   Install the header files
install(FILES ${BITS} DESTINATION include/deductor/cxx/containers)



#  This is the includedir that is used to compile the sources
include_directories("${PROJECT_SOURCE_DIR}")


# source files
file(GLOB SOURCES
binary-tree.cc
)

add_library(containers OBJECT ${SOURCES})
set_property(TARGET containers PROPERTY POSITION_INDEPENDENT_CODE true)
