nanoMODBUS/tests/CMakeLists.txt
Valerio De Benedetto c064e47368 FC1 and FC2 tests
2022-01-21 15:50:03 +01:00

14 lines
304 B
CMake

cmake_minimum_required(VERSION 3.21)
project(modbusino_tests C)
set(CMAKE_C_STANDARD 99)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O0")
include_directories(. ..)
add_definitions(-DMBSN_DEBUG)
add_executable(modbusino_tests ../modbusino.c modbusino_tests.c)
target_link_libraries(modbusino_tests pthread)