31 lines
752 B
CMake
31 lines
752 B
CMake
cmake_minimum_required(VERSION 3.14)
|
|
project(mons_image LANGUAGES C)
|
|
set(CMAKE_C_STANDARD 99)
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS true)
|
|
set(CMAKE_BUILD_TYPE "Debug")
|
|
|
|
add_library(mons_image
|
|
SHARED
|
|
./src/image.c
|
|
./src/qoi.c
|
|
)
|
|
|
|
target_include_directories(mons_image PUBLIC
|
|
"$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>/include"
|
|
"$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>"
|
|
)
|
|
target_compile_options(mons_image PRIVATE -coverage)
|
|
target_link_options(mons_image PRIVATE -coverage)
|
|
|
|
include(CTest)
|
|
|
|
function(TESTCASE NAME)
|
|
add_executable(test_${NAME} ./tests/${NAME}.c)
|
|
target_link_libraries(test_${NAME} PUBLIC mons_image)
|
|
add_test(
|
|
NAME ${NAME}
|
|
COMMAND $<TARGET_FILE:test_${NAME}>
|
|
)
|
|
endfunction()
|
|
|