4326128e72
* Refactored and secured BACnetActionCommand codec into bacaction.c module for command object and added to bacapp module encode/decode with define for enabling and pseudo application tag for internal use. * Simplified bacapp_data_len() and moved into bacdcode module as bacnet_enclosed_data_len() function. * Secured ReadProperty-REQUEST and -ACK decoding. * Removed deprecated Keylist_Key() functions from usage. * Removed pseudo application datatypes from bacapp_data_decode() which only uses primitive application tag encoded values. * Defined INT_MAX when it is not already defined by compiler or libc. * Deprecated bacapp_decode_application_data_len() and bacapp_decode_context_data_len() as they are no longer used in any code in the library. * Added BACnetScale to bacapp module. Improved complex property value decoding. Refactored bacapp_decode_known_property() function. * Refactored and improved the bacapp_snprintf() function for printing EPICS. * Fixed Lighting Output WriteProperty to handle known property decoding.
66 lines
1.6 KiB
CMake
66 lines
1.6 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/basic/object/lsp.c
|
|
# Support files and stubs (pathname alphabetical)
|
|
${SRC_DIR}/bacnet/bacaction.c
|
|
${SRC_DIR}/bacnet/bacaddr.c
|
|
${SRC_DIR}/bacnet/bacapp.c
|
|
${SRC_DIR}/bacnet/bacdcode.c
|
|
${SRC_DIR}/bacnet/bacdest.c
|
|
${SRC_DIR}/bacnet/bacdevobjpropref.c
|
|
${SRC_DIR}/bacnet/bacerror.c
|
|
${SRC_DIR}/bacnet/bacint.c
|
|
${SRC_DIR}/bacnet/bacreal.c
|
|
${SRC_DIR}/bacnet/bacstr.c
|
|
${SRC_DIR}/bacnet/bactext.c
|
|
${SRC_DIR}/bacnet/basic/sys/bigend.c
|
|
${SRC_DIR}/bacnet/basic/sys/days.c
|
|
${SRC_DIR}/bacnet/basic/sys/keylist.c
|
|
${SRC_DIR}/bacnet/datetime.c
|
|
${SRC_DIR}/bacnet/indtext.c
|
|
${SRC_DIR}/bacnet/hostnport.c
|
|
${SRC_DIR}/bacnet/lighting.c
|
|
${SRC_DIR}/bacnet/timestamp.c
|
|
${SRC_DIR}/bacnet/wp.c
|
|
${SRC_DIR}/bacnet/weeklyschedule.c
|
|
${SRC_DIR}/bacnet/bactimevalue.c
|
|
${SRC_DIR}/bacnet/dailyschedule.c
|
|
${SRC_DIR}/bacnet/calendar_entry.c
|
|
${SRC_DIR}/bacnet/special_event.c
|
|
# Test and test library files
|
|
./src/main.c
|
|
${ZTST_DIR}/ztest_mock.c
|
|
${ZTST_DIR}/ztest.c
|
|
)
|