1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-28 18:18:52 +00:00
OpenMW/apps/esmtool/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
632 B
CMake
Raw Normal View History

2010-07-21 11:52:28 +00:00
set(ESMTOOL
2023-03-10 14:01:18 +00:00
esmtool.cpp
labels.hpp
labels.cpp
record.hpp
record.cpp
arguments.hpp
tes4.hpp
tes4.cpp
2010-07-21 11:52:28 +00:00
)
source_group(apps\\esmtool FILES ${ESMTOOL})
# Main executable
openmw_add_executable(esmtool
2023-03-10 14:01:18 +00:00
${ESMTOOL}
2010-07-21 11:52:28 +00:00
)
target_link_libraries(esmtool
2023-03-10 14:01:18 +00:00
${Boost_PROGRAM_OPTIONS_LIBRARY}
components
2010-07-21 11:52:28 +00:00
)
if (BUILD_WITH_CODE_COVERAGE)
target_compile_options(esmtool PRIVATE --coverage)
2023-03-10 14:01:18 +00:00
target_link_libraries(esmtool gcov)
endif()
if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.16 AND MSVC)
target_precompile_headers(esmtool PRIVATE
<fstream>
<string>
<vector>
)
endif()