Crashreporter: remove further reference to removed lib

This commit is contained in:
Adriaan de Groot 2017-09-18 15:02:35 +02:00
parent 4930484931
commit a14e98ce95
2 changed files with 0 additions and 10 deletions

View File

@ -77,7 +77,6 @@ find_package( YAMLCPP 0.5.1 REQUIRED )
find_package( PolkitQt5-1 REQUIRED ) find_package( PolkitQt5-1 REQUIRED )
option( WITH_PYTHON "Enable Python modules API (requires Boost.Python)." ON ) option( WITH_PYTHON "Enable Python modules API (requires Boost.Python)." ON )
# option( WITH_CRASHREPORTER "Build with CrashReporter" OFF )
option( INSTALL_CONFIG "Install configuration files" ON ) option( INSTALL_CONFIG "Install configuration files" ON )
option( WITH_PYTHONQT "Enable next generation Python modules API (experimental, requires PythonQt)." OFF ) option( WITH_PYTHONQT "Enable next generation Python modules API (experimental, requires PythonQt)." OFF )
option( BUILD_TESTING "Build the testing tree." ON ) option( BUILD_TESTING "Build the testing tree." ON )
@ -86,11 +85,6 @@ if( BUILD_TESTING )
enable_testing() enable_testing()
endif () endif ()
# if( CMAKE_SYSTEM_PROCESSOR MATCHES "arm" OR NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/libcrashreporter-qt/CMakeLists.txt" )
# message( STATUS "Build of crashreporter disabled." )
# set( WITH_CRASHREPORTER OFF )
# endif()
find_package( PythonLibs 3.3 ) find_package( PythonLibs 3.3 )
set_package_properties( set_package_properties(
PYTHONLIBS PROPERTIES PYTHONLIBS PROPERTIES

View File

@ -28,7 +28,3 @@ add_subdirectory( modules )
# branding components # branding components
add_subdirectory( branding ) add_subdirectory( branding )
if( WITH_CRASHREPORTER )
add_subdirectory( crashreporter )
endif()