gbemu/tests/CMakeLists.txt

7 lines
280 B
CMake
Raw Normal View History

2025-01-30 14:30:19 -07:00
cmake_minimum_required(VERSION 3.10)
project(tests)
FILE(GLOB SRCS *.c)
add_executable(tests ${SRCS})
target_include_directories(tests PUBLIC ../include ../build/deps/check/src ../build/deps/check)
target_link_libraries(tests PUBLIC Lib check)
add_test(NAME mytests COMMAND tests)