aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-09-14 11:04:06 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-09-14 14:04:51 +0200
commit6fdda786876d9640a6a26f05ef2c5aa7e2175421 (patch)
treea2a817505836328f5e613a464449270d9c35650c
parentac77bd576083ccecfce128b1bca6ab66d16491ee (diff)
scripts: install wm-request
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
-rw-r--r--CMakeLists.txt3
-rw-r--r--scripts/CMakeLists.txt5
2 files changed, 7 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 464af6f..c052d54 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -80,8 +80,9 @@ set(SANITIZER_MODE "none" CACHE STRING "Build using a specific sanitizer (e.g. '
set(LINK_LIBCXX OFF CACHE BOOL "Link against LLVMs libc++")
add_subdirectory(client-lib)
-add_subdirectory(src)
add_subdirectory(doc)
+add_subdirectory(scripts)
+add_subdirectory(src)
install(
FILES layers.json
diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt
new file mode 100644
index 0000000..4dda1ce
--- /dev/null
+++ b/scripts/CMakeLists.txt
@@ -0,0 +1,5 @@
+install(
+ FILES wm-request
+ DESTINATION ${CMAKE_INSTALL_BINDIR}
+ PERMISSIONS WORLD_EXECUTE WORLD_READ OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE
+ COMPONENT "runtime")