Skip to content

Commit e382afc

Browse files
authored
Merge pull request #2 from iit-DLSLab/adding_cmakelists
Adding cmakelists
2 parents 3f7d24d + d2f6b11 commit e382afc

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,5 @@
3939

4040
# debug information files
4141
*.dwo
42+
43+
build

CMakeLists.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)