1
0
mirror of https://github.com/fumiama/fumidb.git synced 2026-06-07 18:20:23 +08:00
Files
fumidb/tests/CMakeLists.txt
源文雨 67b9176615 add types
2022-05-01 21:16:17 +08:00

10 lines
453 B
CMake

cmake_minimum_required(VERSION 3.0.0)
project(fumidb_test VERSION 1.0)
add_executable(binary_test binary_test.c)
add_executable(page_test page_test.c ../src/page.c ../src/file.c)
add_executable(types_test types_test.c ../src/types.c ../src/types/int8.c ../src/page.c ../src/file.c)
add_test(test_binary binary_test COMMAND binary_test)
add_test(test_page page_test COMMAND page_test)
add_test(test_types types_test COMMAND types_test)