2015-01-16 23:11:36 +00:00
|
|
|
set(ESSIMPORTER_FILES
|
|
|
|
main.cpp
|
|
|
|
importer.cpp
|
|
|
|
importplayer.cpp
|
|
|
|
importnpcc.cpp
|
|
|
|
importcrec.cpp
|
|
|
|
importcellref.cpp
|
2015-01-18 18:59:29 +00:00
|
|
|
importacdt.cpp
|
2015-01-18 21:52:11 +00:00
|
|
|
importinventory.cpp
|
2015-01-16 23:11:36 +00:00
|
|
|
importercontext.cpp
|
|
|
|
converter.cpp
|
2015-01-18 18:59:29 +00:00
|
|
|
convertacdt.cpp
|
|
|
|
convertnpcc.cpp
|
2015-01-16 23:11:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(openmw-essimporter
|
|
|
|
${ESSIMPORTER_FILES}
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(openmw-essimporter
|
|
|
|
${Boost_LIBRARIES}
|
|
|
|
components
|
|
|
|
)
|
|
|
|
|
|
|
|
if (BUILD_WITH_CODE_COVERAGE)
|
|
|
|
add_definitions (--coverage)
|
|
|
|
target_link_libraries(openmw-essimporter gcov)
|
|
|
|
endif()
|