1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-15 22:49:48 +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
610 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
Boost::program_options
2023-03-10 14:01:18 +00:00
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 (MSVC AND PRECOMPILE_HEADERS_WITH_MSVC)
target_precompile_headers(esmtool PRIVATE
<fstream>
<string>
<vector>
)
endif()