1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 15:35:23 +00:00
OpenMW/apps/esmtool/CMakeLists.txt

27 lines
416 B
CMake
Raw Normal View History

2010-07-21 13:52:28 +02:00
set(ESMTOOL
esmtool.cpp
labels.hpp
labels.cpp
record.hpp
record.cpp
2022-04-14 16:46:57 +02:00
arguments.hpp
tes4.hpp
tes4.cpp
2010-07-21 13:52:28 +02:00
)
source_group(apps\\esmtool FILES ${ESMTOOL})
# Main executable
openmw_add_executable(esmtool
2010-07-21 13:52:28 +02:00
${ESMTOOL}
)
target_link_libraries(esmtool
${Boost_PROGRAM_OPTIONS_LIBRARY}
2011-11-06 09:30:15 +01:00
components
2010-07-21 13:52:28 +02:00
)
if (BUILD_WITH_CODE_COVERAGE)
add_definitions (--coverage)
target_link_libraries(esmtool gcov)
endif()