set(H_LIST
	binobj.h
	Copying
)

set(SRC_LIST
	binobj.cpp
)

set_source_files_properties(${H_LIST} PROPERTIES HEADER_FILE_ONLY ON)
set_source_files_properties(init PROPERTIES LANGUAGE CXX LINKER_LANGUAGE CXX)

add_library(coff_binobj init ${SRC_LIST} ${H_LIST})

set(USES_LIST coff plugin_bz2)

add_dependencies(coff_binobj ${USES_LIST})
target_link_libraries(coff_binobj ${USES_LIST})
