84 lines
1.8 KiB
CMake
84 lines
1.8 KiB
CMake
#********************************************************************
|
|
# _ _ _
|
|
# _ __ | |_ _ | | __ _ | |__ ___
|
|
# | '__|| __|(_)| | / _` || '_ \ / __|
|
|
# | | | |_ _ | || (_| || |_) |\__ \
|
|
# |_| \__|(_)|_| \__,_||_.__/ |___/
|
|
#
|
|
# www.rt-labs.com
|
|
# Copyright 2018 rt-labs AB, Sweden.
|
|
#
|
|
# This software is dual-licensed under GPLv3 and a commercial
|
|
# license. See the file LICENSE.md distributed with this software for
|
|
# full license information.
|
|
#*******************************************************************/
|
|
|
|
target_include_directories(profinet
|
|
PRIVATE
|
|
src/ports/rt-kernel
|
|
)
|
|
|
|
target_sources(profinet
|
|
PRIVATE
|
|
src/ports/rt-kernel/pnal.c
|
|
src/ports/rt-kernel/pnal_eth.c
|
|
src/ports/rt-kernel/pnal_udp.c
|
|
src/ports/rt-kernel/pnal_snmp.c
|
|
src/ports/rt-kernel/mib/mib2_system.c
|
|
src/ports/rt-kernel/mib/lldp-mib.c
|
|
src/ports/rt-kernel/mib/lldp-ext-pno-mib.c
|
|
src/ports/rt-kernel/mib/lldp-ext-dot3-mib.c
|
|
src/ports/rt-kernel/mib/rowindex.c
|
|
)
|
|
|
|
target_compile_options(profinet
|
|
PRIVATE
|
|
-Wall
|
|
-Wextra
|
|
-Werror
|
|
-Wno-unused-parameter
|
|
)
|
|
|
|
target_include_directories(pn_dev
|
|
PRIVATE
|
|
samples/pn_dev
|
|
src/ports/rt-kernel
|
|
)
|
|
|
|
if (EXISTS ${PROFINET_SOURCE_DIR}/src/ports/rt-kernel/sampleapp_${BSP}.c)
|
|
set(BSP_SOURCE sampleapp_${BSP}.c)
|
|
else()
|
|
set(BSP_SOURCE sampleapp_bsp.c)
|
|
endif()
|
|
|
|
target_sources(pn_dev
|
|
PRIVATE
|
|
samples/pn_dev/sampleapp_common.c
|
|
samples/pn_dev/app_utils.c
|
|
samples/pn_dev/app_log.c
|
|
samples/pn_dev/app_gsdml.c
|
|
samples/pn_dev/app_data.c
|
|
src/ports/rt-kernel/sampleapp_main.c
|
|
src/ports/rt-kernel/${BSP_SOURCE}
|
|
)
|
|
|
|
target_compile_options(pn_dev
|
|
PRIVATE
|
|
-Wall
|
|
-Wextra
|
|
-Werror
|
|
-Wno-unused-parameter
|
|
)
|
|
|
|
install (FILES
|
|
src/ports/rt-kernel/pnal_config.h
|
|
DESTINATION include
|
|
)
|
|
|
|
if (BUILD_TESTING)
|
|
target_include_directories(pf_test
|
|
PRIVATE
|
|
src/ports/rt-kernel
|
|
)
|
|
endif()
|