Skip to content

Commit 83c1e76

Browse files
committed
added CMakeLists.txt
1 parent d62955c commit 83c1e76

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

CMakeLists.txt

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
cmake_minimum_required(VERSION 3.16.2)
2+
project(dls2-barebone)
3+
4+
# list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
5+
6+
# ==============================================================================
7+
# Super Project Configuration
8+
# ==============================================================================
9+
# set(CPACK_DEB_COMPONENT_INSTALL ON)
10+
11+
# Default to Release mode
12+
if(NOT CMAKE_BUILD_TYPE)
13+
set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type" FORCE)
14+
endif()
15+
16+
# include(dls_include_paths) # directories of global libraries
17+
# include(mark_advanced)
18+
19+
# macro(conditional_deploy TARGET_NAME)
20+
# set(DLS_DEPLOY_${TARGET_NAME} OFF
21+
# CACHE BOOL "Whether to package ${TARGET_NAME}"
22+
# )
23+
24+
# if(DLS_DEPLOY_${TARGET_NAME})
25+
# add_subdirectory(${TARGET_NAME})
26+
# endif()
27+
# endmacro()
28+
29+
# ==============================================================================
30+
# Main Framework
31+
# ==============================================================================
32+
set(DLS_MESSAGE_FOLDER ${CMAKE_SOURCE_DIR}/dls2/modules/messages)
33+
add_subdirectory(dls2)
34+
add_subdirectory(robotlib)
35+
add_subdirectory(gluecode)

0 commit comments

Comments
 (0)