Skip to content

Commit fe047d9

Browse files
committed
Merge branch 'install-more-things' into 'master'
Install tools left out on Windows Closes #8297 See merge request OpenMW/openmw!4510
2 parents af36402 + a4bc99d commit fe047d9

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

apps/bsatool/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ if (BUILD_WITH_CODE_COVERAGE)
1818
target_link_libraries(bsatool gcov)
1919
endif()
2020

21+
if (WIN32)
22+
install(TARGETS bsatool RUNTIME DESTINATION ".")
23+
endif()
24+
2125
if (MSVC AND PRECOMPILE_HEADERS_WITH_MSVC)
2226
target_precompile_headers(bsatool PRIVATE
2327
<filesystem>

apps/esmtool/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ if (BUILD_WITH_CODE_COVERAGE)
2525
target_link_libraries(esmtool gcov)
2626
endif()
2727

28+
if (WIN32)
29+
install(TARGETS esmtool RUNTIME DESTINATION ".")
30+
endif()
31+
2832
if (MSVC AND PRECOMPILE_HEADERS_WITH_MSVC)
2933
target_precompile_headers(esmtool PRIVATE
3034
<fstream>

apps/niftest/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ if (BUILD_WITH_CODE_COVERAGE)
1717
target_link_libraries(niftest gcov)
1818
endif()
1919

20+
if (WIN32)
21+
install(TARGETS niftest RUNTIME DESTINATION ".")
22+
endif()
23+
2024
if (MSVC AND PRECOMPILE_HEADERS_WITH_MSVC)
2125
target_precompile_headers(niftest PRIVATE <filesystem>)
2226
endif()

0 commit comments

Comments
 (0)