diff --git a/CMakeLists.txt b/CMakeLists.txt index 027fe15c7..650352690 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,7 +66,6 @@ option(NS3_NETANIM "Build netanim" OFF) # other options option(NS3_ENABLE_BUILD_VERSION "Embed version info into libraries" OFF) -option(NS3_GNUPLOT "Build with Gnuplot support" OFF) option(NS3_GSL "Build with GSL support" ON) option(NS3_GTK3 "Build with GTK3 support" ON) option(NS3_LINK_TIME_OPTIMIZATION "Build with link-time optimization" OFF) diff --git a/build-support/macros-and-definitions.cmake b/build-support/macros-and-definitions.cmake index d92cd5515..3b962bdfc 100644 --- a/build-support/macros-and-definitions.cmake +++ b/build-support/macros-and-definitions.cmake @@ -943,20 +943,6 @@ macro(process_options) endif() endif() - if(${NS3_GNUPLOT}) - find_package(Gnuplot-ios) # Not sure what package would contain the correct - # header/library - if(NOT ${GNUPLOT_FOUND}) - message(${HIGHLIGHTED_STATUS} - "GNUPLOT was not found. Continuing without it." - ) - else() - message(STATUS "GNUPLOT was found.") - include_directories(${GNUPLOT_INCLUDE_DIRS}) - link_directories(${GNUPLOT_LIBRARY}) - endif() - endif() - # checking for documentation dependencies and creating targets # First we check for doxygen dependencies