2023-01-09 14:14:42 +13:00
|
|
|
# Copyright (C) 2020-23 Robin Stuart <rstuart114@gmail.com>
|
2020-08-05 09:22:26 +12:00
|
|
|
# Adapted from qrencode/tests/CMakeLists.txt
|
|
|
|
# Copyright (C) 2006-2017 Kentaro Fukuchi <kentaro@fukuchi.org>
|
|
|
|
# vim: set ts=4 sw=4 et :
|
|
|
|
|
2021-07-27 02:29:05 +12:00
|
|
|
cmake_minimum_required(VERSION 3.5)
|
2020-10-04 10:51:08 +13:00
|
|
|
project(zint_frontend_tests)
|
2020-08-05 09:22:26 +12:00
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
|
2021-03-30 03:46:13 +13:00
|
|
|
include(${zint-package_SOURCE_DIR}/cmake/zint_add_test.cmake)
|
2020-08-05 09:22:26 +12:00
|
|
|
|
2023-01-09 14:14:42 +13:00
|
|
|
if(ZINT_SHARED)
|
|
|
|
set(ZINT_STATIC "")
|
|
|
|
endif()
|
2021-03-30 03:39:40 +13:00
|
|
|
zint_add_test(args test_args)
|