From 07583a9f0776ee4c37d666ecb5c97049af30a8ec Mon Sep 17 00:00:00 2001 From: WLs50 Date: Sun, 16 Mar 2025 14:51:38 +0100 Subject: [PATCH] fix order of parameters after cmake -E copy -t --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 18c7bb7d..1e28249a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -482,7 +482,7 @@ endif() if (WIN32) add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy -t $ $ + COMMAND ${CMAKE_COMMAND} -E copy -t $ $ COMMAND_EXPAND_LISTS ) endif ()