5c2f198fd8
* Rm top-level west.yml; Cleanup manifests; Fix unit testing * Cleanup sample * Cleanup test CMakeLists Co-authored-by: Gregory Shue <gregory.shue@legrand.us>
49 lines
1.0 KiB
CMake
49 lines
1.0 KiB
CMake
# SPDX-License-Identifier: MIT
|
|
|
|
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
|
|
|
|
get_filename_component(basename ${CMAKE_CURRENT_SOURCE_DIR} NAME)
|
|
project(test_${basename}
|
|
VERSION 1.0.0
|
|
LANGUAGES C)
|
|
|
|
|
|
string(REGEX REPLACE
|
|
"/test/bacnet/[a-zA-Z_/-]*$"
|
|
"/src"
|
|
SRC_DIR
|
|
${CMAKE_CURRENT_SOURCE_DIR})
|
|
string(REGEX REPLACE
|
|
"/test/bacnet/[a-zA-Z_/-]*$"
|
|
"/test"
|
|
TST_DIR
|
|
${CMAKE_CURRENT_SOURCE_DIR})
|
|
set(ZTST_DIR "${TST_DIR}/ztest/src")
|
|
|
|
add_compile_definitions(
|
|
BIG_ENDIAN=0
|
|
CONFIG_ZTEST=1
|
|
)
|
|
|
|
include_directories(
|
|
${SRC_DIR}
|
|
${TST_DIR}/ztest/include
|
|
)
|
|
|
|
add_executable(${PROJECT_NAME}
|
|
# File(s) under test
|
|
${SRC_DIR}/bacnet/alarm_ack.c
|
|
# Support files and stubs (pathname alphabetical)
|
|
${SRC_DIR}/bacnet/bacdcode.c
|
|
${SRC_DIR}/bacnet/bacint.c
|
|
${SRC_DIR}/bacnet/bacreal.c
|
|
${SRC_DIR}/bacnet/bacstr.c
|
|
${SRC_DIR}/bacnet/basic/sys/bigend.c
|
|
${SRC_DIR}/bacnet/datetime.c
|
|
${SRC_DIR}/bacnet/timestamp.c
|
|
# Test and test library files
|
|
./src/main.c
|
|
${ZTST_DIR}/ztest_mock.c
|
|
${ZTST_DIR}/ztest.c
|
|
)
|