1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +00:00
OpenMW/apps/bsatool/CMakeLists.txt

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

28 lines
510 B
CMake
Raw Normal View History

2013-03-04 23:45:25 +00:00
set(BSATOOL
bsatool.cpp
2013-03-04 23:45:25 +00:00
)
source_group(apps\\bsatool FILES ${BSATOOL})
# Main executable
openmw_add_executable(bsatool
${BSATOOL}
2013-03-04 23:45:25 +00:00
)
target_link_libraries(bsatool
2023-03-10 14:01:18 +00:00
${Boost_PROGRAM_OPTIONS_LIBRARY}
components
2013-03-04 23:45:25 +00:00
)
if (BUILD_WITH_CODE_COVERAGE)
2023-03-10 14:01:18 +00:00
add_definitions (--coverage)
target_link_libraries(bsatool gcov)
endif()
if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.16 AND MSVC)
target_precompile_headers(bsatool PRIVATE
<filesystem>
<fstream>
<vector>
)
endif()