File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed
Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ if (BUILD_WITH_CODE_COVERAGE)
1818 target_link_libraries (bsatool gcov)
1919endif ()
2020
21+ if (WIN32 )
22+ install (TARGETS bsatool RUNTIME DESTINATION "." )
23+ endif ()
24+
2125if (MSVC AND PRECOMPILE_HEADERS_WITH_MSVC)
2226 target_precompile_headers(bsatool PRIVATE
2327 <filesystem>
Original file line number Diff line number Diff line change @@ -25,6 +25,10 @@ if (BUILD_WITH_CODE_COVERAGE)
2525 target_link_libraries (esmtool gcov)
2626endif ()
2727
28+ if (WIN32 )
29+ install (TARGETS esmtool RUNTIME DESTINATION "." )
30+ endif ()
31+
2832if (MSVC AND PRECOMPILE_HEADERS_WITH_MSVC)
2933 target_precompile_headers(esmtool PRIVATE
3034 <fstream>
Original file line number Diff line number Diff line change @@ -17,6 +17,10 @@ if (BUILD_WITH_CODE_COVERAGE)
1717 target_link_libraries (niftest gcov)
1818endif ()
1919
20+ if (WIN32 )
21+ install (TARGETS niftest RUNTIME DESTINATION "." )
22+ endif ()
23+
2024if (MSVC AND PRECOMPILE_HEADERS_WITH_MSVC)
2125 target_precompile_headers(niftest PRIVATE <filesystem>)
2226endif ()
You can’t perform that action at this time.
0 commit comments