CMakeGUIExec.cxx 315 B

123456789101112131415
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #include <QApplication>
  4. class CMakeSetupDialog;
  5. void SetupDefaultQSettings()
  6. {
  7. }
  8. int CMakeGUIExec(CMakeSetupDialog* /*window*/)
  9. {
  10. return QApplication::exec();
  11. }