We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f7d24d + d2f6b11 commit e382afcCopy full SHA for e382afc
2 files changed
.gitignore
@@ -39,3 +39,5 @@
39
40
# debug information files
41
*.dwo
42
+
43
+build
CMakeLists.txt
@@ -0,0 +1,12 @@
1
+cmake_minimum_required(VERSION 3.16.2)
2
+project(dls2-barebone)
3
4
+# Default to Release mode
5
+if(NOT CMAKE_BUILD_TYPE)
6
+ set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type" FORCE)
7
+endif()
8
9
+set(DLS_MESSAGE_FOLDER ${CMAKE_SOURCE_DIR}/dls2/modules/messages)
10
+add_subdirectory(dls2)
11
+add_subdirectory(robotlib)
12
+add_subdirectory(gluecode)
0 commit comments