1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-12 12:38:02 +00:00
OpenMW/apps/mwiniimporter/CMakeLists.txt

25 lines
415 B
CMake
Raw Normal View History

2012-03-30 18:59:44 +00:00
set(MWINIIMPORT
main.cpp
importer.cpp
)
set(MWINIIMPORT_HEADER
importer.hpp
)
source_group(launcher FILES ${MWINIIMPORT} ${MWINIIMPORT_HEADER})
add_executable(openmw-iniimporter
2012-03-30 18:59:44 +00:00
${MWINIIMPORT}
)
target_link_libraries(openmw-iniimporter
2012-03-30 18:59:44 +00:00
${Boost_LIBRARIES}
components
)
if (BUILD_WITH_CODE_COVERAGE)
add_definitions (--coverage)
target_link_libraries(openmw-iniimporter gcov)
endif()