summaryrefslogtreecommitdiffstats
path: root/src/cmake/api.cmake
AgeCommit message (Expand)AuthorFilesLines
2021-05-27build: kindly ask python not to polute src/Damjan Marion1-4/+4
2021-04-30misc: experimental configure scriptDamjan Marion1-6/+6
2021-02-08misc: support api generated dependency for multiarch sourceOle Troan1-0/+4
2020-11-25api: vat2 and json autogeneration for api messagesOle Troan1-1/+20
2020-03-31vlib: move pci api types from vnet/pci to vlib/pciJakub Grajciar1-2/+1
2019-12-17build: export vapi generation in vpp-devOliver Giles1-6/+77
2019-09-25api: split api generated filesOle Troan1-1/+1
2019-07-25build: vppapigen search VPP_INCLUDE_DIR if setBenoƮt Ganne1-2/+8
2018-11-30API: Add dependency on compiler for API .json and .api generation.Ole Troan1-2/+2
2018-09-12cmake: create cmake VPP module, update sample-plugin so it uses itDamjan Marion1-2/+8
2018-09-07cmake: set packaging component for different filesDamjan Marion1-5/+9
2018-08-27cmake: add vapi buildDamjan Marion1-2/+5
2018-08-26cmake: move functions to src/cmakeDamjan Marion1-0/+65
background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
# Copyright (c) 2016 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

bin_PROGRAMS += c2cpel cpelatency cpeldump cpelinreg cpelstate elog_merge

lib_LTLIBRARIES += libcperf.la

libcperf_la_SOURCES = \
  tools/perftool/delsvec.c	\
  tools/perftool/linreg.c	\
  tools/perftool/props.c	\
  tools/perftool/cpel_util.c

PERFTOOL_LIBS = libcperf.la libvppinfra.la -lm

c2cpel_SOURCES = tools/perftool/c2cpel.c
c2cpel_LDADD = $(PERFTOOL_LIBS)

cpelatency_SOURCES = tools/perftool/cpelatency.c
cpelatency_LDADD = $(PERFTOOL_LIBS)

cpeldump_SOURCES = tools/perftool/cpeldump.c
cpeldump_LDADD = $(PERFTOOL_LIBS)

cpelinreg_SOURCES = tools/perftool/cpelinreg.c
cpelinreg_LDADD = $(PERFTOOL_LIBS)

cpelstate_SOURCES = tools/perftool/cpelstate.c
cpelstate_LDADD = $(PERFTOOL_LIBS)

elog_merge_SOURCES = tools/perftool/elog_merge.c
elog_merge_LDADD = $(PERFTOOL_LIBS)

# vi:syntax=automake