forked from teamnwah/openmw-tes3coop
25 lines
459 B
CMake
25 lines
459 B
CMake
set(ESSIMPORTER_FILES
|
|
main.cpp
|
|
importer.cpp
|
|
importplayer.cpp
|
|
importnpcc.cpp
|
|
importcrec.cpp
|
|
importcellref.cpp
|
|
importacdt.hpp
|
|
importercontext.cpp
|
|
converter.cpp
|
|
)
|
|
|
|
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()
|