1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-10 16:21:40 +08:00
CMake/Source/QtDialog/CMakeGUIExec.cxx
2020-09-23 14:10:40 -04:00

16 lines
315 B
C++

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