diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-11-05 21:31:13 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-11-05 21:31:13 +0100 |
commit | 9cd48b6cc39440f0776e10a5c8c1a6c42aca337b (patch) | |
tree | 55bfe45a8736b9a559b7287db50dff7db0c68afb /test | |
parent | 6e3e64671cbf33cbf050a2f5c577e13e5851b27f (diff) |
ccc
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 6 |
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() |