Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1 | # Copyright (c) 2018 Cisco and/or its affiliates. |
| 2 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | # you may not use this file except in compliance with the License. |
| 4 | # You may obtain a copy of the License at: |
| 5 | # |
| 6 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | # |
| 8 | # Unless required by applicable law or agreed to in writing, software |
| 9 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | # See the License for the specific language governing permissions and |
| 12 | # limitations under the License. |
| 13 | |
| 14 | macro(add_vpp_executable exec) |
| 15 | cmake_parse_arguments(ARG |
Damjan Marion | 258a4cf | 2018-08-28 13:20:44 +0200 | [diff] [blame] | 16 | "ENABLE_EXPORTS;NO_INSTALL" |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 17 | "" |
| 18 | "SOURCES;LINK_LIBRARIES;DEPENDS" |
| 19 | ${ARGN} |
| 20 | ) |
| 21 | |
| 22 | add_executable(${exec} ${ARG_SOURCES}) |
| 23 | if(ARG_LINK_LIBRARIES) |
| 24 | target_link_libraries(${exec} ${ARG_LINK_LIBRARIES}) |
| 25 | endif() |
| 26 | if(ARG_ENABLE_EXPORTS) |
| 27 | set_target_properties(${exec} PROPERTIES ENABLE_EXPORTS 1) |
| 28 | endif() |
| 29 | if(ARG_DEPENDS) |
| 30 | add_dependencies(${exec} ${ARG_DEPENDS}) |
| 31 | endif() |
Damjan Marion | 258a4cf | 2018-08-28 13:20:44 +0200 | [diff] [blame] | 32 | if(NOT ARG_NO_INSTALL) |
| 33 | install(TARGETS ${exec} DESTINATION bin) |
| 34 | endif() |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 35 | endmacro() |
| 36 | |