Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 33dfb3c

Browse files
committed
Formatting
1 parent c3019a7 commit 33dfb3c

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

CMakeLists.txt

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
cmake_minimum_required(VERSION 2.8.3)
22
project(rviz_visual_tools)
33

4-
# Load catkin and all dependencies required for this package
54
find_package(catkin REQUIRED COMPONENTS
65
cmake_modules
76
eigen_conversions
@@ -19,7 +18,6 @@ find_package(catkin REQUIRED COMPONENTS
1918
find_package(Eigen REQUIRED)
2019
find_package(Boost REQUIRED thread system)
2120

22-
# Catkin
2321
catkin_package(
2422
LIBRARIES
2523
${PROJECT_NAME}
@@ -32,13 +30,15 @@ catkin_package(
3230
INCLUDE_DIRS include
3331
)
3432

35-
## Build
36-
3733
include_directories(
3834
include
3935
${catkin_INCLUDE_DIRS}
4036
)
4137

38+
###########
39+
## Build ##
40+
###########
41+
4242
# Visualization Tools Library
4343
add_library(${PROJECT_NAME}
4444
src/rviz_visual_tools.cpp
@@ -57,8 +57,10 @@ target_link_libraries(rviz_visual_tools_test
5757
${catkin_LIBRARIES} ${PROJECT_NAME}
5858
)
5959

60+
##########
61+
## TEST ##
62+
##########
6063

61-
# TESTS -----------------------------------------------------------------
6264
if(CATKIN_ENABLE_TESTING)
6365

6466
add_rostest_gtest(rvt_test launch/rvt_test.launch tests/rvt_test.cpp)
@@ -70,10 +72,12 @@ if(CATKIN_ENABLE_TESTING)
7072

7173
endif()
7274

73-
## Test for correct C++ source code ---------------------------------------
75+
## Test for correct C++ source code
7476
roslint_cpp()
7577

76-
## Install ------------------------------------------------------------
78+
#############
79+
## Install ##
80+
#############
7781

7882
# Install libraries
7983
install(TARGETS ${PROJECT_NAME}

0 commit comments

Comments
 (0)