diff options
-rw-r--r-- | src/tools/vppapigen/CMakeLists.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/tools/vppapigen/CMakeLists.txt b/src/tools/vppapigen/CMakeLists.txt index 6023f20c63a..2898f506b6a 100644 --- a/src/tools/vppapigen/CMakeLists.txt +++ b/src/tools/vppapigen/CMakeLists.txt @@ -11,5 +11,13 @@ # See the License for the specific language governing permissions and # limitations under the License. -install(FILES vppapigen.py RENAME vppapigen DESTINATION bin) +install( + FILES vppapigen.py + RENAME vppapigen + DESTINATION bin + PERMISSIONS + OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE + WORLD_READ WORLD_EXECUTE +) + install(FILES C.py JSON.py DESTINATION share/vpp) |