find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Widgets QUIET)

  if (Qt${QT_VERSION_MAJOR}Widgets_FOUND)
    project(shadersBrowser)

  set(${PROJECT_NAME}_HEADERS
    auditors.h
    dialog.h
    environment.h
    main.h
    materialEditor.h
    misc.h
    model.h
    shaders.h
  )

  set(${PROJECT_NAME}_SOURCES
    auditors.cxx
    dialog.cxx
    environment.cxx
    main.cxx
    materialEditor.cxx
    misc.cxx
    model.cxx
    shaders.cxx
  )

  source_group("Header Files" FILES ${${PROJECT_NAME}_HEADERS})

  add_oiv_executable(${PROJECT_NAME} ${${PROJECT_NAME}_SOURCES} ${${PROJECT_NAME}_HEADERS})
  target_link_libraries(${PROJECT_NAME} ${DialogViz_LIBRARIES})

endif()
