Command - install
- Temporarily removed CmdInstall from the build. This is deferred until 2.1 or so, when extensions are supported.
This commit is contained in:
@@ -29,7 +29,6 @@ set (commands_SRCS Command.cpp Command.h
|
||||
CmdIDs.cpp CmdIDs.h
|
||||
CmdImport.cpp CmdImport.h
|
||||
CmdInfo.cpp CmdInfo.h
|
||||
CmdInstall.cpp CmdInstall.h
|
||||
CmdLog.cpp CmdLog.h
|
||||
CmdLogo.cpp CmdLogo.h
|
||||
CmdMerge.cpp CmdMerge.h
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
#include <CmdIDs.h>
|
||||
#include <CmdImport.h>
|
||||
#include <CmdInfo.h>
|
||||
#include <CmdInstall.h>
|
||||
//#include <CmdInstall.h>
|
||||
#include <CmdLog.h>
|
||||
#include <CmdLogo.h>
|
||||
#include <CmdMerge.h>
|
||||
@@ -126,7 +126,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
||||
c = new CmdIDs (); all[c->keyword ()] = c;
|
||||
c = new CmdImport (); all[c->keyword ()] = c;
|
||||
c = new CmdInfo (); all[c->keyword ()] = c;
|
||||
c = new CmdInstall (); all[c->keyword ()] = c;
|
||||
// c = new CmdInstall (); all[c->keyword ()] = c;
|
||||
c = new CmdLog (); all[c->keyword ()] = c;
|
||||
c = new CmdLogo (); all[c->keyword ()] = c;
|
||||
c = new CmdMerge (); all[c->keyword ()] = c;
|
||||
|
||||
Reference in New Issue
Block a user