diff --git a/resources/3rdparty/glpk-4.53/CMakeLists.txt b/resources/3rdparty/glpk-4.53/CMakeLists.txt index d206b7615..8302fa365 100644 --- a/resources/3rdparty/glpk-4.53/CMakeLists.txt +++ b/resources/3rdparty/glpk-4.53/CMakeLists.txt @@ -33,6 +33,8 @@ option(DEBUG "Sets whether the DEBUG mode is used" OFF) set(ADDITIONAL_INCLUDE_DIRS "" CACHE STRING "Additional directories added to the include directories.") set(ADDITIONAL_LINK_DIRS "" CACHE STRING "Additional directories added to the link directories.") +MARK_AS_ADVANCED(WITH_GLPK_EXAMPLES WITH_GMP ENABLE_DL ENABLE_ODBC ENABLE_MYSQL) + # If the DEBUG option was turned on, we will target a debug version and a release version otherwise if (DEBUG) set (CMAKE_BUILD_TYPE "DEBUG") diff --git a/resources/3rdparty/gtest-1.7.0/CMakeLists.txt b/resources/3rdparty/gtest-1.7.0/CMakeLists.txt index 05094977b..648d4cd73 100644 --- a/resources/3rdparty/gtest-1.7.0/CMakeLists.txt +++ b/resources/3rdparty/gtest-1.7.0/CMakeLists.txt @@ -22,6 +22,8 @@ option(gtest_build_samples "Build gtest's sample programs." OFF) option(gtest_disable_pthreads "Disable uses of pthreads in gtest." OFF) +MARK_AS_ADVANCED(gtest_build_tests gtest_build_samples gtest_disable_pthreads gtest_force_shared_crt) + # Defines pre_project_set_up_hermetic_build() and set_up_hermetic_build(). include(cmake/hermetic_build.cmake OPTIONAL) diff --git a/resources/3rdparty/log4cplus-1.1.3-rc1/CMakeLists.txt b/resources/3rdparty/log4cplus-1.1.3-rc1/CMakeLists.txt index caf2426c3..269960827 100644 --- a/resources/3rdparty/log4cplus-1.1.3-rc1/CMakeLists.txt +++ b/resources/3rdparty/log4cplus-1.1.3-rc1/CMakeLists.txt @@ -139,3 +139,5 @@ endif (LOG4CPLUS_QT4) if (LOG4CPLUS_DEFINE_INSTALL_TARGET) include(Log4CPlusCPack.cmake) endif() + +MARK_AS_ADVANCED(ENABLE_SYMBOLS_VISIBILITY _WIN32_WINNT WITH_ICONV LOG4CPLUS_WORKING_C_LOCALE LOG4CPLUS_WORKING_LOCALE LOG4CPLUS_BUILD_LOGGINGSERVER LOG4CPLUS_BUILD_TESTING LOG4CPLUS_DEFINE_INSTALL_TARGET LOG4CPLUS_QT4) diff --git a/resources/3rdparty/log4cplus-1.1.3-rc1/ConfigureChecks.cmake b/resources/3rdparty/log4cplus-1.1.3-rc1/ConfigureChecks.cmake index 2090bd6bf..9f1c941ce 100644 --- a/resources/3rdparty/log4cplus-1.1.3-rc1/ConfigureChecks.cmake +++ b/resources/3rdparty/log4cplus-1.1.3-rc1/ConfigureChecks.cmake @@ -380,3 +380,5 @@ set(HAVE_PRETTY_FUNCTION_MACRO ${LOG4CPLUS_HAVE_PRETTY_FUNCTION_MACRO} ) set(HAVE___SYNC_ADD_AND_FETCH ${LOG4CPLUS_HAVE___SYNC_ADD_AND_FETCH} ) set(HAVE___SYNC_SUB_AND_FETCH ${LOG4CPLUS_HAVE___SYNC_SUB_AND_FETCH} ) + +MARK_AS_ADVANCED(LIBADVAPI32 LIBCPOSIX LIBICONV LIBKERNEL32 LIBNSL LIBPOSIX4 LIBRT LIBSOCKET LIBWS2_32) \ No newline at end of file diff --git a/resources/cmake/FindGMP.cmake b/resources/cmake/FindGMP.cmake index 77aaf5034..7f3bc1bfa 100644 --- a/resources/cmake/FindGMP.cmake +++ b/resources/cmake/FindGMP.cmake @@ -51,4 +51,6 @@ elseif(GMP_FOUND) if(GMP_FIND_REQUIRED) message(FATAL_ERROR "Could not find GMP") endif() -endif() \ No newline at end of file +endif() + +MARK_AS_ADVANCED(GMP_MPIRXX_LIBRARY GMP_MPIR_LIBRARY GMP_INCLUDE_DIR GMP_LIBRARY) \ No newline at end of file