Skip to content

Commit

Permalink
Fixed double free issues on ubuntu 18.04 when running some gtests (#5510
Browse files Browse the repository at this point in the history
)
  • Loading branch information
acpaquette authored Jun 28, 2024
1 parent bbc7988 commit 85aeb70
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions isis/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 85aeb70

Please sign in to comment.