Skip to content
This repository has been archived by the owner on Feb 21, 2021. It is now read-only.

Commit

Permalink
Merge pull request #672 from JdeRobot/frivas_671
Browse files Browse the repository at this point in the history
#671 fixed cxx flags overwrite
  • Loading branch information
fqez authored Jan 26, 2017
2 parents c3f6e10 + 361c94a commit 2d4b409
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/drivers/ardrone_server/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if(ARDRONE_ALL_DEPS)
add_library(ardrone_server_msgs STATIC ${SLICE_OUTPUT}/navdatagps.cpp)


set(CMAKE_CXX_FLAGS "-w -lIce -lIceUtil")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -w -lIce -lIceUtil")

include_directories(
${INTERFACES_CPP_DIR}
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/openni1Server/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ IF(openni_LIBRARIES AND LIBUSB_INCLUDE_DIRS)
SET( SOURCE_FILES openni1Server.cpp myprogeo.cpp )
add_definitions(-DGLADE_DIR="${gladedir}")

set( CMAKE_CXX_FLAGS "-Wno-deprecated" ) # Opciones para el compilador
set( CMAKE_CXX_FLAGS " ${CMAKE_CXX_FLAGS} -Wno-deprecated" ) # Opciones para el compilador

include_directories(
${INTERFACES_CPP_DIR}
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/openniServer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ IF(OPENNI2_LIB)
SET( SOURCE_FILES openniServer.cpp myprogeo.cpp )
add_definitions(-DGLADE_DIR="${gladedir}")

set( CMAKE_CXX_FLAGS "-Wno-deprecated -Wl,-rpath ./" ) # Opciones para el compilador
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated -Wl,-rpath ./" ) # Opciones para el compilador

include_directories(
${INTERFACES_CPP_DIR}
Expand Down

0 comments on commit 2d4b409

Please sign in to comment.