1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Jochen Sprickerhof <git@jochen.sprickerhof.de>
Date: Tue, 4 Aug 2015 22:28:40 +0200
Subject: Add CMakeLists.txt
---
CMakeLists.txt | 5 +++++
1 file changed, 5 insertions(+)
create mode 100644 CMakeLists.txt
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..2351fc8
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,5 @@
+cmake_minimum_required(VERSION 2.8.3)
+project(navigation_msgs)
+
+add_subdirectory(map_msgs)
+add_subdirectory(move_base_msgs)
|