move in bitset and test

This commit is contained in:
2024-06-25 12:44:43 +02:00
parent 4bda751f76
commit e78e4ea8d5
4 changed files with 385 additions and 0 deletions

14
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 3.9...3.24 FATAL_ERROR)
project(solanaceae)
add_executable(solanaceae_util_bitset_test
./bitset_tests.cpp
)
target_link_libraries(solanaceae_util_bitset_test PUBLIC
solanaceae_util
)
add_test(NAME solanaceae_util_bitset_test COMMAND solanaceae_util_bitset_test)