mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 16:29:55 +00:00
Install tools left out on Windows
This commit is contained in:
parent
4c9206485b
commit
a4bc99db7a
3 changed files with 12 additions and 0 deletions
|
@ -18,6 +18,10 @@ if (BUILD_WITH_CODE_COVERAGE)
|
|||
target_link_libraries(bsatool gcov)
|
||||
endif()
|
||||
|
||||
if (WIN32)
|
||||
install(TARGETS bsatool RUNTIME DESTINATION ".")
|
||||
endif()
|
||||
|
||||
if (MSVC AND PRECOMPILE_HEADERS_WITH_MSVC)
|
||||
target_precompile_headers(bsatool PRIVATE
|
||||
<filesystem>
|
||||
|
|
|
@ -25,6 +25,10 @@ if (BUILD_WITH_CODE_COVERAGE)
|
|||
target_link_libraries(esmtool gcov)
|
||||
endif()
|
||||
|
||||
if (WIN32)
|
||||
install(TARGETS esmtool RUNTIME DESTINATION ".")
|
||||
endif()
|
||||
|
||||
if (MSVC AND PRECOMPILE_HEADERS_WITH_MSVC)
|
||||
target_precompile_headers(esmtool PRIVATE
|
||||
<fstream>
|
||||
|
|
|
@ -17,6 +17,10 @@ if (BUILD_WITH_CODE_COVERAGE)
|
|||
target_link_libraries(niftest gcov)
|
||||
endif()
|
||||
|
||||
if (WIN32)
|
||||
install(TARGETS niftest RUNTIME DESTINATION ".")
|
||||
endif()
|
||||
|
||||
if (MSVC AND PRECOMPILE_HEADERS_WITH_MSVC)
|
||||
target_precompile_headers(niftest PRIVATE <filesystem>)
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue