Unverified Commit 85aeb703 authored by acpaquette's avatar acpaquette Committed by GitHub
Browse files

Fixed double free issues on ubuntu 18.04 when running some gtests (#5510)

parent bbc79880
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -62,10 +62,6 @@ message("Detected Operating System: ${osVersionString}")
#===============================================================================
# Configuration options

# All libraries are build as shared.  The main library is also built
#  as a static library using some specialized code in Utilities.cmake.
set(BUILD_SHARED_LIBS ON)

# make sure to leave rpaths untouched on install
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)

@@ -302,6 +298,11 @@ else()
  set(SENSOR_UTILITIES_BUILD_TESTS OFF CACHE BOOL "Disable SensorUtilities Tests")
endif()


# All libraries are build as shared.  The main library is also built
#  as a static library using some specialized code in Utilities.cmake.
set(BUILD_SHARED_LIBS ON)

add_subdirectory(../SensorUtilities SensorUtilities)

# In this case, we specify the version numbers being searched for in the non-traditional installs.