cmake: improve add_vpp_plugin macro

Change-Id: Iffd5c45ab242a919592a1f686f7f880936b68a1a
Signed-off-by: Damjan Marion <damarion@cisco.com>
This commit is contained in:
Damjan Marion
2018-08-25 11:33:29 +02:00
parent 2bfdda76d8
commit 74449b8b68
29 changed files with 177 additions and 94 deletions

View File

@@ -11,13 +11,16 @@
# See the License for the specific language governing permissions and
# limitations under the License.
add_vpp_plugin(stn_plugin
stn.api
add_vpp_plugin(stn
SOURCES
stn.c
stn_api.c
API_FILES
stn.api
)
add_vpp_api_test_plugin(stn_test_plugin
add_vpp_api_test_plugin(stn_test
stn.api
stn_test.c
)