2014-11-13 19:30:51 +02:00
|
|
|
|
2022-04-27 10:46:45 +03:00
|
|
|
|
2014-11-13 19:30:51 +02:00
|
|
|
add_subdirectory( infosummary )
|
|
|
|
add_subdirectory( memory )
|
|
|
|
add_subdirectory( devinfo )
|
|
|
|
add_subdirectory( info )
|
|
|
|
add_subdirectory( samba )
|
|
|
|
add_subdirectory( nics )
|
2022-04-27 10:46:45 +03:00
|
|
|
add_subdirectory( pci )
|
2014-11-13 19:30:51 +02:00
|
|
|
|
|
|
|
add_feature_info("OpenGL support" OPENGL_FOUND "View OpenGL details in kinfocenter." )
|
2022-04-10 20:20:04 +03:00
|
|
|
add_feature_info("EGL support" OpenGL_EGL_FOUND "View EGL details in kinfocenter." )
|
2021-02-15 18:44:40 +02:00
|
|
|
add_feature_info("DRM support" LIBDRM_FOUND "View 3D acceleration details in kinfocenter." )
|
2022-04-27 10:46:45 +03:00
|
|
|
add_feature_info("USB support" LIBUSB_FOUND "USB details in kinfocenter." )
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2022-04-10 20:20:04 +03:00
|
|
|
if((OPENGL_FOUND AND OPENGL_GLU_FOUND) OR OpenGL_EGL_FOUND)
|
2016-09-01 04:09:09 +00:00
|
|
|
add_subdirectory( opengl )
|
|
|
|
else()
|
|
|
|
message(STATUS "OpenGL/ES2.0 information module has been disabled.")
|
|
|
|
endif()
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2022-04-27 10:46:45 +03:00
|
|
|
if(LIBUSB_FOUND)
|
|
|
|
add_subdirectory( usbview )
|
|
|
|
else()
|
|
|
|
message(STATUS "USB information module has been disabled.")
|
|
|
|
endif()
|
2014-11-13 19:30:51 +02:00
|
|
|
|
|
|
|
if(RAW1394_FOUND)
|
|
|
|
add_subdirectory( view1394 )
|
|
|
|
endif(RAW1394_FOUND)
|