diff options
Diffstat (limited to '')
-rw-r--r-- | tests/ChunkData/CMakeLists.txt | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/tests/ChunkData/CMakeLists.txt b/tests/ChunkData/CMakeLists.txt index 705d46b35..8c2de41a1 100644 --- a/tests/ChunkData/CMakeLists.txt +++ b/tests/ChunkData/CMakeLists.txt @@ -4,7 +4,7 @@ add_library(ChunkBuffer ${PROJECT_SOURCE_DIR}/src/ChunkData.cpp ${PROJECT_SOURCE target_link_libraries(ChunkBuffer PUBLIC fmt::fmt) -add_executable(creatable-exe creatable.cpp) +add_executable(creatable-exe Creatable.cpp) target_link_libraries(creatable-exe ChunkBuffer) add_test(NAME creatable-test COMMAND creatable-exe) @@ -20,19 +20,11 @@ add_executable(arraystocoords-exe ArraytoCoord.cpp) target_link_libraries(arraystocoords-exe ChunkBuffer) add_test(NAME arraystocoords-test COMMAND arraystocoords-exe) -add_executable(copyblocks-exe CopyBlocks.cpp) -target_link_libraries(copyblocks-exe ChunkBuffer) -add_test(NAME copyblocks-test COMMAND copyblocks-exe) - - - - # Put all test projects into a separate folder: set_target_properties( arraystocoords-exe coordinates-exe copies-exe - copyblocks-exe creatable-exe PROPERTIES FOLDER Tests/ChunkData ) |