set(H_LIST
	coff.h
	defs.h
	stab.def
	util.h
	lib.h
	Copying
)

set(SRC_LIST
	defs.cpp
	util.cpp
	lib.cpp
)

add_library(coff ${SRC_LIST})

set(USES_LIST Core)

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