2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc.
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2006-01-02 07:21:05 +03:00
|
|
|
|
|
|
|
#ifndef cmCPackNSISGenerator_h
|
|
|
|
#define cmCPackNSISGenerator_h
|
|
|
|
|
2016-09-07 01:21:35 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2007-11-06 00:55:45 +03:00
|
|
|
#include "cmCPackGenerator.h"
|
2016-09-07 01:21:35 +03:00
|
|
|
#include "cmTypeMacro.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-09-07 01:21:35 +03:00
|
|
|
#include <iosfwd>
|
2008-06-17 19:39:26 +04:00
|
|
|
#include <set>
|
2016-09-07 01:21:35 +03:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class cmCPackComponent;
|
|
|
|
class cmCPackComponentGroup;
|
2006-01-02 07:21:05 +03:00
|
|
|
|
|
|
|
/** \class cmCPackNSISGenerator
|
|
|
|
* \brief A generator for NSIS files
|
|
|
|
*
|
|
|
|
* http://people.freebsd.org/~kientzle/libarchive/
|
|
|
|
*/
|
2007-11-06 00:55:45 +03:00
|
|
|
class cmCPackNSISGenerator : public cmCPackGenerator
|
2006-01-02 07:21:05 +03:00
|
|
|
{
|
|
|
|
public:
|
2007-11-06 00:55:45 +03:00
|
|
|
cmCPackTypeMacro(cmCPackNSISGenerator, cmCPackGenerator);
|
2006-01-02 07:21:05 +03:00
|
|
|
|
2012-05-09 23:33:44 +04:00
|
|
|
static cmCPackGenerator* CreateGenerator64()
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
|
|
|
return new cmCPackNSISGenerator(true);
|
|
|
|
}
|
2012-05-09 23:33:44 +04:00
|
|
|
|
2006-01-02 07:21:05 +03:00
|
|
|
/**
|
|
|
|
* Construct generator
|
|
|
|
*/
|
2012-05-09 23:33:44 +04:00
|
|
|
cmCPackNSISGenerator(bool nsis64 = false);
|
2016-06-27 22:25:27 +03:00
|
|
|
~cmCPackNSISGenerator() CM_OVERRIDE;
|
2006-01-02 07:21:05 +03:00
|
|
|
|
|
|
|
protected:
|
2016-06-27 22:25:27 +03:00
|
|
|
int InitializeInternal() CM_OVERRIDE;
|
2016-06-08 23:29:15 +03:00
|
|
|
void CreateMenuLinks(std::ostream& str, std::ostream& deleteStr);
|
2016-06-27 22:25:27 +03:00
|
|
|
int PackageFiles() CM_OVERRIDE;
|
|
|
|
const char* GetOutputExtension() CM_OVERRIDE { return ".exe"; }
|
|
|
|
const char* GetOutputPostfix() CM_OVERRIDE { return "win32"; }
|
2006-02-16 23:20:23 +03:00
|
|
|
|
2006-03-09 00:33:39 +03:00
|
|
|
bool GetListOfSubdirectories(const char* dir,
|
2016-05-16 17:34:04 +03:00
|
|
|
std::vector<std::string>& dirs);
|
2008-06-17 19:39:26 +04:00
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
enum cmCPackGenerator::CPackSetDestdirSupport SupportsSetDestdir() const
|
|
|
|
CM_OVERRIDE;
|
|
|
|
bool SupportsAbsoluteDestination() const CM_OVERRIDE;
|
|
|
|
bool SupportsComponentInstallation() const CM_OVERRIDE;
|
2008-06-17 19:39:26 +04:00
|
|
|
|
2011-10-13 21:51:18 +04:00
|
|
|
/// Produce a string that contains the NSIS code to describe a
|
|
|
|
/// particular component. Any added macros will be emitted via
|
2008-07-08 19:52:25 +04:00
|
|
|
/// macrosOut.
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string CreateComponentDescription(cmCPackComponent* component,
|
2016-06-08 23:29:15 +03:00
|
|
|
std::ostream& macrosOut);
|
2008-06-17 19:39:26 +04:00
|
|
|
|
|
|
|
/// Produce NSIS code that selects all of the components that this component
|
|
|
|
/// depends on, recursively.
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string CreateSelectionDependenciesDescription(
|
|
|
|
cmCPackComponent* component, std::set<cmCPackComponent*>& visited);
|
2008-06-17 19:39:26 +04:00
|
|
|
|
2008-10-01 17:04:27 +04:00
|
|
|
/// Produce NSIS code that de-selects all of the components that are
|
|
|
|
/// dependent on this component, recursively.
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string CreateDeselectionDependenciesDescription(
|
|
|
|
cmCPackComponent* component, std::set<cmCPackComponent*>& visited);
|
2008-06-17 19:39:26 +04:00
|
|
|
|
2011-10-13 21:51:18 +04:00
|
|
|
/// Produce a string that contains the NSIS code to describe a
|
2008-07-08 19:52:25 +04:00
|
|
|
/// particular component group, including its components. Any
|
|
|
|
/// added macros will be emitted via macrosOut.
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string CreateComponentGroupDescription(cmCPackComponentGroup* group,
|
2016-06-08 23:29:15 +03:00
|
|
|
std::ostream& macrosOut);
|
2008-06-17 19:39:26 +04:00
|
|
|
|
2011-03-20 16:22:39 +03:00
|
|
|
/// Translations any newlines found in the string into \\r\\n, so that the
|
2008-06-17 19:39:26 +04:00
|
|
|
/// resulting string can be used within NSIS.
|
|
|
|
static std::string TranslateNewlines(std::string str);
|
2012-05-09 23:33:44 +04:00
|
|
|
|
|
|
|
bool Nsis64;
|
2006-01-02 07:21:05 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|