Skip to content

Commit ec912fa

Browse files
Update CMakeLists.txt and README.md
1 parent a6f39d8 commit ec912fa

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

CMakeLists.txt

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ configure_file(osi_version.proto.in ${CMAKE_CURRENT_SOURCE_DIR}/osi_version.prot
1616
find_package(Protobuf 2.6.1 REQUIRED)
1717

1818
set(OSI_PROTO_FILES
19-
osi_version.proto
19+
osi_version.proto
2020
osi_common.proto
2121
osi_datarecording.proto
2222
osi_detectedlandmark.proto
@@ -84,22 +84,22 @@ if(NOT DOXYGEN_FOUND)
8484
message(WARNING "Doxygen could not be found.")
8585

8686
else()
87-
88-
if(NOT EXISTS ${FILTER_PROTO2CPP_PY_PATH}/proto2cpp.py)
89-
90-
message(WARNING "${FILTER_PROTO2CPP_PY_PATH}/proto2cpp.py could not be found.")
91-
92-
else()
93-
94-
set(doxyfile_in ${CMAKE_CURRENT_SOURCE_DIR}/doxygen_config.cmake.in)
95-
set(doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
96-
97-
configure_file(${doxyfile_in} ${doxyfile} @ONLY)
98-
99-
ADD_CUSTOM_TARGET(api_doc ALL
100-
COMMAND ${DOXYGEN_EXECUTABLE} ${doxyfile}
101-
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
102-
103-
endif(NOT EXISTS ${FILTER_PROTO2CPP_PY_PATH}/proto2cpp.py)
104-
87+
88+
if(NOT EXISTS ${FILTER_PROTO2CPP_PY_PATH}/proto2cpp.py)
89+
90+
message(WARNING "${FILTER_PROTO2CPP_PY_PATH}/proto2cpp.py could not be found.")
91+
92+
else()
93+
94+
set(doxyfile_in ${CMAKE_CURRENT_SOURCE_DIR}/doxygen_config.cmake.in)
95+
set(doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
96+
97+
configure_file(${doxyfile_in} ${doxyfile} @ONLY)
98+
99+
ADD_CUSTOM_TARGET(api_doc ALL
100+
COMMAND ${DOXYGEN_EXECUTABLE} ${doxyfile}
101+
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
102+
103+
endif(NOT EXISTS ${FILTER_PROTO2CPP_PY_PATH}/proto2cpp.py)
104+
105105
endif(NOT DOXYGEN_FOUND)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ sensor model component, i.e. it takes a SensorData message as input and returns
4141
Specific errors should be handled as follows:
4242
- Ghost objects / false positive:
4343
An additional SensorDataObject is added to the list of objects in SensorData.object
44-
with SensorDataObject.model_internal_object.ground_truth_type set to kTypeGhost.
44+
with SensorDataObject.model_internal_object.ground_truth_type set to kTypeGhost.
4545
- False negative:
4646
The object is marked as not seen by the sensor by setting the property
47-
SensorDataObject.model_internal_object.is_seen to false. The implementation
48-
of field-of-view calculation modules should respect this flag and never reset
49-
an object marked as not-seen to seen.
47+
SensorDataObject.model_internal_object.is_seen to false. The implementation
48+
of field-of-view calculation modules should respect this flag and never reset
49+
an object marked as not-seen to seen.
5050

5151

5252
Versioning

0 commit comments

Comments
 (0)