summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-11-05 21:31:13 +0100
committerStanislaw Halik <sthalik@misaki.pl>2023-11-05 21:31:13 +0100
commit9cd48b6cc39440f0776e10a5c8c1a6c42aca337b (patch)
tree55bfe45a8736b9a559b7287db50dff7db0c68afb /test
parent6e3e64671cbf33cbf050a2f5c577e13e5851b27f (diff)
ccc
Diffstat (limited to 'test')
-rw-r--r--test/CMakeLists.txt6
1 files 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()