2000-08-29 23:26:29 +04:00
|
|
|
// CMakeSetupdialog.cpp : Defines the class behaviors for the application.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "CMakeSetup.h"
|
|
|
|
#include "CMakeSetupDialog.h"
|
2001-08-22 01:41:12 +04:00
|
|
|
#include "CMakeCommandLineInfo.h"
|
2003-07-24 01:40:10 +04:00
|
|
|
#include "../cmDocumentation.h"
|
|
|
|
#include "../cmake.h"
|
2007-12-14 01:56:50 +03:00
|
|
|
#include "../cmSystemTools.h"
|
2003-07-24 01:40:10 +04:00
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2007-10-22 20:49:09 +04:00
|
|
|
static const char * cmDocumentationName[][3] =
|
2003-07-24 01:40:10 +04:00
|
|
|
{
|
2007-10-09 22:35:25 +04:00
|
|
|
{0,
|
|
|
|
" CMakeSetup - CMake Windows GUI.", 0},
|
|
|
|
{0,0,0}
|
2003-07-24 01:40:10 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2007-10-22 20:49:09 +04:00
|
|
|
static const char * cmDocumentationUsage[][3] =
|
2003-07-24 01:40:10 +04:00
|
|
|
{
|
2007-10-09 22:35:25 +04:00
|
|
|
{0,
|
2003-07-24 01:40:10 +04:00
|
|
|
" CMakeSetup [options]\n"
|
|
|
|
" CMakeSetup [options] <path-to-source>\n"
|
2007-10-09 22:35:25 +04:00
|
|
|
" CMakeSetup [options] <path-to-existing-build>", 0},
|
|
|
|
{0,0,0}
|
2003-07-24 01:40:10 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2007-10-22 20:49:09 +04:00
|
|
|
static const char * cmDocumentationDescription[][3] =
|
2003-07-24 01:40:10 +04:00
|
|
|
{
|
2007-10-09 22:35:25 +04:00
|
|
|
{0,
|
2003-07-24 01:40:10 +04:00
|
|
|
"The \"CMakeSetup\" executable is the CMake Windows GUI. Project "
|
|
|
|
"configuration settings may be specified interactively. "
|
|
|
|
"Brief instructions are provided at the bottom of the "
|
2007-10-09 22:35:25 +04:00
|
|
|
"window when the program is running.", 0},
|
2003-07-24 01:40:10 +04:00
|
|
|
CMAKE_STANDARD_INTRODUCTION,
|
2007-10-09 22:35:25 +04:00
|
|
|
{0,0,0}
|
2003-07-24 01:40:10 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2007-10-22 20:49:09 +04:00
|
|
|
static const char * cmDocumentationOptions[][3] =
|
2003-07-24 01:40:10 +04:00
|
|
|
{
|
|
|
|
{"-A[on|off]", "Enable/disable display of advanced cache values.",
|
|
|
|
"There are two categories of CMake cache values: non-advanced and "
|
|
|
|
"advanced. Most users will not need to change the advanced options. "
|
|
|
|
"The CMakeSetup GUI contains a checkbox to enable/disable display of "
|
|
|
|
"advanced options. This command line flag changes its default setting."},
|
2007-10-09 22:35:25 +04:00
|
|
|
{0,0,0}
|
2003-07-24 01:40:10 +04:00
|
|
|
};
|
2000-08-29 23:26:29 +04:00
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
#define new DEBUG_NEW
|
|
|
|
#undef THIS_FILE
|
|
|
|
static char THIS_FILE[] = __FILE__;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CMakeSetup
|
|
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CMakeSetup, CWinApp)
|
|
|
|
//{{AFX_MSG_MAP(CMakeSetup)
|
|
|
|
// NOTE - the ClassWizard will add and remove mapping macros here.
|
|
|
|
// DO NOT EDIT what you see in these blocks of generated code!
|
|
|
|
//}}AFX_MSG
|
|
|
|
ON_COMMAND(ID_HELP, CWinApp::OnHelp)
|
|
|
|
END_MESSAGE_MAP();
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CMakeSetup construction
|
|
|
|
CMakeSetup::CMakeSetup()
|
|
|
|
{
|
|
|
|
// TODO: add construction code here,
|
|
|
|
// Place all significant initialization in InitInstance
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// The one and only CMakeSetup object
|
|
|
|
|
|
|
|
CMakeSetup theApp;
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CMakeSetup initialization
|
|
|
|
|
|
|
|
BOOL CMakeSetup::InitInstance()
|
|
|
|
{
|
|
|
|
AfxEnableControlContainer();
|
|
|
|
|
|
|
|
// Standard initialization
|
|
|
|
// If you are not using these features and wish to reduce the size
|
|
|
|
// of your final executable, you should remove from the following
|
|
|
|
// the specific initialization routines you do not need.
|
2002-06-12 17:46:02 +04:00
|
|
|
#if _MFC_VER <= 0x421
|
2000-08-29 23:26:29 +04:00
|
|
|
#ifdef _AFXDLL
|
2005-12-13 22:14:16 +03:00
|
|
|
Enable3dControls(); // Call this when using MFC in a shared DLL
|
2000-08-29 23:26:29 +04:00
|
|
|
#else
|
2005-12-13 22:14:16 +03:00
|
|
|
Enable3dControlsStatic(); // Call this when linking to MFC statically
|
2000-08-29 23:26:29 +04:00
|
|
|
#endif
|
2002-06-12 17:46:02 +04:00
|
|
|
#endif
|
2001-08-22 01:41:12 +04:00
|
|
|
CMakeCommandLineInfo cmdInfo;
|
|
|
|
ParseCommandLine(cmdInfo);
|
2007-12-14 01:56:50 +03:00
|
|
|
cmSystemTools::FindExecutableDirectory(cmdInfo.GetArgV()[0]);
|
2005-12-13 22:14:16 +03:00
|
|
|
|
|
|
|
// Check for documentation options. If there are no arguments skip
|
|
|
|
// the check because the GUI should be displayed instead of showing
|
|
|
|
// usage in this case.
|
2003-07-24 01:40:10 +04:00
|
|
|
cmDocumentation doc;
|
2005-12-13 22:14:16 +03:00
|
|
|
if(cmdInfo.GetArgC() > 1 &&
|
|
|
|
doc.CheckOptions(cmdInfo.GetArgC(), cmdInfo.GetArgV()))
|
2003-07-24 01:40:10 +04:00
|
|
|
{
|
|
|
|
// Construct and print requested documentation.
|
|
|
|
cmake hcm;
|
2007-12-14 01:56:50 +03:00
|
|
|
hcm.AddCMakePaths();
|
2007-08-01 23:51:05 +04:00
|
|
|
doc.SetCMakeRoot(hcm.GetCacheDefinition("CMAKE_ROOT"));
|
2003-07-24 01:40:10 +04:00
|
|
|
std::vector<cmDocumentationEntry> commands;
|
2007-08-01 23:51:05 +04:00
|
|
|
std::vector<cmDocumentationEntry> compatCommands;
|
2007-10-24 19:36:47 +04:00
|
|
|
std::map<std::string,cmDocumentationSection *> propDocs;
|
2007-08-01 23:51:05 +04:00
|
|
|
|
2003-07-24 01:40:10 +04:00
|
|
|
std::vector<cmDocumentationEntry> generators;
|
2007-08-01 23:51:05 +04:00
|
|
|
hcm.GetCommandDocumentation(commands, true, false);
|
|
|
|
hcm.GetCommandDocumentation(compatCommands, false, true);
|
2003-07-24 01:40:10 +04:00
|
|
|
hcm.GetGeneratorDocumentation(generators);
|
2007-10-24 19:36:47 +04:00
|
|
|
hcm.GetPropertiesDocumentation(propDocs);
|
2007-08-01 23:51:05 +04:00
|
|
|
doc.SetName("cmake");
|
2007-10-22 20:49:09 +04:00
|
|
|
doc.SetSection("Name",cmDocumentationName);
|
|
|
|
doc.SetSection("Usage",cmDocumentationUsage);
|
|
|
|
doc.SetSection("Description",cmDocumentationDescription);
|
2007-10-24 19:36:47 +04:00
|
|
|
doc.AppendSection("Generators",generators);
|
|
|
|
doc.PrependSection("Options",cmDocumentationOptions);
|
2007-10-22 20:49:09 +04:00
|
|
|
doc.SetSection("Commands",commands);
|
|
|
|
doc.SetSection("Compatilbility Commands", compatCommands);
|
2007-10-24 19:36:47 +04:00
|
|
|
doc.SetSections(propDocs);
|
2007-08-01 23:51:05 +04:00
|
|
|
|
2003-07-24 01:40:10 +04:00
|
|
|
return (doc.PrintRequestedDocumentation(std::cout)? 0:1);
|
|
|
|
}
|
|
|
|
|
2001-08-22 01:41:12 +04:00
|
|
|
CMakeSetupDialog dlg(cmdInfo);
|
2003-07-24 01:40:10 +04:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
m_pMainWnd = &dlg;
|
2002-03-13 23:29:26 +03:00
|
|
|
INT_PTR nResponse = dlg.DoModal();
|
2000-08-29 23:26:29 +04:00
|
|
|
if (nResponse == IDOK)
|
|
|
|
{
|
|
|
|
// TODO: Place code here to handle when the dialog is
|
|
|
|
// dismissed with OK
|
|
|
|
}
|
|
|
|
else if (nResponse == IDCANCEL)
|
|
|
|
{
|
|
|
|
// TODO: Place code here to handle when the dialog is
|
|
|
|
// dismissed with Cancel
|
|
|
|
}
|
|
|
|
|
|
|
|
// Since the dialog has been closed, return FALSE so that we exit the
|
|
|
|
// application, rather than start the application's message pump.
|
|
|
|
return FALSE;
|
|
|
|
}
|