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

set(SRC_LIST
	defs.cpp
	util.cpp
	lib.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 init ${SRC_LIST} ${H_LIST})

set(USES_LIST Core)

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