unified_retro_keyboard/firmware/asdf/test/CmakeLists.txt
Dave 3a854d97f2 Get tests to pass with CMake build system
progress on issues #23 (new mechanism to add keymaps) and #27 (Cmake build)
2021-03-05 01:17:33 -06:00

103 lines
2.0 KiB
Plaintext

temporary_config_file(${ASDF_SRC_DIR}/Keymaps/asdf_all_keymap_defs_test.h ${CMAKE_CURRENT_BINARY_DIR}/asdf_keymap_defs.h)
temporary_config_file(${ASDF_SRC_DIR}/Arch/asdf_arch_test.h ${CMAKE_CURRENT_BINARY_DIR}/asdf_arch.h)
list(APPEND C_FLAGS
"-std=c99"
"-Wall"
"-Wextra"
"-Wpointer-arith"
"-Wcast-align"
"-Wwrite-strings"
"-Wswitch-default"
"-Wunreachable-code"
"-Winit-self"
"-Wmissing-field-initializers"
"-Wno-unknown-pragmas"
"-Wstrict-prototypes"
"-Wundef"
"-Wold-style-definition"
)
list(APPEND TEST_INCLUDES
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/unity
${ASDF_SRC_DIR}
${ASDF_SRC_DIR}/Arch
)
add_library(asdf_core
STATIC
${ASDF_SRC_DIR}/asdf.c
${ASDF_SRC_DIR}/asdf_buffer.c
${ASDF_SRC_DIR}/asdf_hook.c
${ASDF_SRC_DIR}/asdf_keymaps.c
${ASDF_SRC_DIR}/asdf_modifiers.c
${ASDF_SRC_DIR}/asdf_physical.c
${ASDF_SRC_DIR}/asdf_repeat.c
${ASDF_SRC_DIR}/asdf_virtual.c
${ASDF_SRC_DIR}/Arch/asdf_arch_test.c
)
target_include_directories(asdf_core
PRIVATE
${ASDF_SRC_DIR}
${ASDF_SRC_DIR}/Arch
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
)
add_library(test_helpers
STATIC
${CMAKE_CURRENT_SOURCE_DIR}/test_asdf_lib.c
${CMAKE_CURRENT_SOURCE_DIR}/test_asdf_keymap_defs.c
)
target_include_directories(test_helpers
PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}
${ASDF_SRC_DIR}
${CMAKE_CURRENT_BINARY_DIR}
)
target_compile_options(test_helpers
PRIVATE
${CFLAGS}
)
function(setup_test testname)
add_executable(${testname}
${testname}.c
unity/unity.c
)
target_compile_options(${testname}
PRIVATE
${CFLAGS}
)
target_include_directories(${testname}
PRIVATE
${TEST_INCLUDES}
)
target_link_libraries(${testname} asdf_core test_helpers)
add_test(
NAME ${testname}
COMMAND ${CMAKE_BINARY_DIR}/test/${testname}
)
endfunction()
enable_testing()
setup_test(test_asdf_repeat)
setup_test(test_asdf_modifiers)
setup_test(test_asdf_keymaps)
setup_test(test_asdf_buffer)
setup_test(test_asdf_virtual)
setup_test(test_asdf_hook)