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, 2 Jun 2015 17:41:02 +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..9eab8f4
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,5 @@
+cmake_minimum_required(VERSION 2.8.3)
+project(nodelet_core)
+
+add_subdirectory(nodelet)
+add_subdirectory(nodelet_topic_tools)
|