From 9cd48b6cc39440f0776e10a5c8c1a6c42aca337b Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 5 Nov 2023 21:31:13 +0100 Subject: ccc --- test/CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 8473f091..3764142f 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -20,14 +20,12 @@ endif() fm_add_install_executable(${self}) -set(save-dir "${CMAKE_BINARY_DIR}/test/save") file(GLOB files "save/*.dat" CONFIGURE_ARGS) foreach(file ${files}) - install(FILES "${file}" DESTINATION "${save-dir}") + install(FILES "${file}" DESTINATION "${CMAKE_BINARY_DIR}/test/save") endforeach() -set(json-dir "${CMAKE_BINARY_DIR}/test/json") file(GLOB files "json/*.json" CONFIGURE_ARGS) foreach(file ${files}) - install(FILES "${file}" DESTINATION "${json-dir}") + install(FILES "${file}" DESTINATION "${CMAKE_BINARY_DIR}/test/json") endforeach() -- cgit v1.2.3