Uncrustify lint format fix. (#7)

This commit is contained in:
Javier Moreno
2018-11-19 16:17:04 +01:00
committed by Borja Outerelo
parent 162117d9a2
commit d1c08622ce
3 changed files with 14 additions and 13 deletions
@@ -25,8 +25,8 @@ endif()
ament_package( ament_package(
CONFIG_EXTRAS "microxrcedds_agent_cmake_module-extras.cmake" CONFIG_EXTRAS "microxrcedds_agent_cmake_module-extras.cmake"
) )
install(DIRECTORY cmake install(DIRECTORY cmake
DESTINATION share/${PROJECT_NAME} DESTINATION share/${PROJECT_NAME}
) )
@@ -54,15 +54,15 @@ if(MicroXRCEDDS_Agent_LIBRARY_RELEASE AND MicroXRCEDDS_Agent_LIBRARY_DEBUG)
set(MicroXRCEDDS_Agent_LIBRARIES set(MicroXRCEDDS_Agent_LIBRARIES
optimized ${MicroXRCEDDS_Agent_LIBRARY_RELEASE} optimized ${MicroXRCEDDS_Agent_LIBRARY_RELEASE}
debug ${MicroXRCEDDS_Agent_LIBRARY_DEBUG} debug ${MicroXRCEDDS_Agent_LIBRARY_DEBUG}
) )
elseif(MicroXRCEDDS_Agent_LIBRARY_RELEASE) elseif(MicroXRCEDDS_Agent_LIBRARY_RELEASE)
set(MicroXRCEDDS_Agent_LIBRARIES set(MicroXRCEDDS_Agent_LIBRARIES
${MicroXRCEDDS_Agent_LIBRARY_RELEASE} ${MicroXRCEDDS_Agent_LIBRARY_RELEASE}
) )
elseif(MicroXRCEDDS_Agent_LIBRARY_DEBUG) elseif(MicroXRCEDDS_Agent_LIBRARY_DEBUG)
set(MicroXRCEDDS_Agent_LIBRARIES set(MicroXRCEDDS_Agent_LIBRARIES
${MicroXRCEDDS_Agent_LIBRARY_DEBUG} ${MicroXRCEDDS_Agent_LIBRARY_DEBUG}
) )
else() else()
set(MicroXRCEDDS_Agent_LIBRARIES "") set(MicroXRCEDDS_Agent_LIBRARIES "")
endif() endif()
@@ -78,15 +78,15 @@ if(FastRTPS_LIBRARY_RELEASE AND FastRTPS_LIBRARY_DEBUG)
set(FastRTPS_LIBRARIES set(FastRTPS_LIBRARIES
optimized ${FastRTPS_LIBRARY_RELEASE} optimized ${FastRTPS_LIBRARY_RELEASE}
debug ${FastRTPS_LIBRARY_DEBUG} debug ${FastRTPS_LIBRARY_DEBUG}
) )
elseif(FastRTPS_LIBRARY_RELEASE) elseif(FastRTPS_LIBRARY_RELEASE)
set(FastRTPS_LIBRARIES set(FastRTPS_LIBRARIES
${MicroXRCEDDS_Agent_LIBRARY_RELEASE} ${MicroXRCEDDS_Agent_LIBRARY_RELEASE}
) )
elseif(FastRTPS_LIBRARY_DEBUG) elseif(FastRTPS_LIBRARY_DEBUG)
set(FastRTPS_LIBRARIES set(FastRTPS_LIBRARIES
${MicroXRCEDDS_Agent_LIBRARY_DEBUG} ${MicroXRCEDDS_Agent_LIBRARY_DEBUG}
) )
else() else()
set(FastRTPS_LIBRARIES "") set(FastRTPS_LIBRARIES "")
endif() endif()
@@ -102,15 +102,15 @@ if(FastCDR_LIBRARY_RELEASE AND FastCDR_LIBRARY_DEBUG)
set(FastCDR_LIBRARIES set(FastCDR_LIBRARIES
optimized ${FastCDR_LIBRARY_RELEASE} optimized ${FastCDR_LIBRARY_RELEASE}
debug ${FastCDR_LIBRARY_DEBUG} debug ${FastCDR_LIBRARY_DEBUG}
) )
elseif(FastCDR_LIBRARY_RELEASE) elseif(FastCDR_LIBRARY_RELEASE)
set(FastCDR_LIBRARIES set(FastCDR_LIBRARIES
${FastCDR_LIBRARY_RELEASE} ${FastCDR_LIBRARY_RELEASE}
) )
elseif(FastCDR_LIBRARY_DEBUG) elseif(FastCDR_LIBRARY_DEBUG)
set(FastCDR_LIBRARIES set(FastCDR_LIBRARIES
${FastCDR_LIBRARY_DEBUG} ${FastCDR_LIBRARY_DEBUG}
) )
else() else()
set(FastCDR_LIBRARIES "") set(FastCDR_LIBRARIES "")
endif() endif()
@@ -12,4 +12,5 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
list(INSERT CMAKE_MODULE_PATH 0 "${microxrcedds_agent_cmake_module_DIR}/Modules") list(INSERT CMAKE_MODULE_PATH 0
"${microxrcedds_agent_cmake_module_DIR}/Modules")