diff options
author | Sadie Powell <sadie@witchery.services> | 2024-04-15 12:35:36 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-04-15 12:41:56 +0100 |
commit | 3e5d3c5bdc2f52982529bd6cbf8e1edf914ec163 (patch) | |
tree | a82033e9a37869ced3b48c73ccdd6861b4db18e8 /src/tools | |
parent | 62deedfa755d9c7e20be59e513ce27e087419f3b (diff) |
Avoid packaging unnecessary .lib files on Windows.
[skip alpine ci]
[skip ubuntu ci]
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt index 5aa833ea9..35dcc6139 100644 --- a/src/tools/CMakeLists.txt +++ b/src/tools/CMakeLists.txt @@ -18,6 +18,7 @@ foreach(SRC ${TOOLS_SRCS}) # Set the executable to be installed to the bin directory under the main directory install(TARGETS ${EXE} DESTINATION ${BIN_DIR} + RUNTIME ) # Add the executable to the list of files for CPack to ignore set(EXE_BINARY "$<TARGET_FILE:${EXE}>") |