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
|
2017-09-08 21:17:42 +00:00
|
|
|
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
|
|
|
)
|
|
|
|
|
2012-08-19 19:23:46 +00:00
|
|
|
if (BUILD_WITH_CODE_COVERAGE)
|
2023-03-10 14:16:09 +00:00
|
|
|
target_compile_options(esmtool PRIVATE --coverage)
|
2023-03-10 14:01:18 +00:00
|
|
|
target_link_libraries(esmtool gcov)
|
2017-09-08 21:20:04 +00:00
|
|
|
endif()
|
2022-07-01 14:05:17 +00:00
|
|
|
|
|
|
|
if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.16 AND MSVC)
|
|
|
|
target_precompile_headers(esmtool PRIVATE
|
|
|
|
<fstream>
|
|
|
|
<string>
|
|
|
|
<vector>
|
|
|
|
)
|
|
|
|
endif()
|