Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
99221554
Commit
99221554
authored
Jun 06, 2001
by
Bill Hoffman
Browse files
ENH: rename Invoke to InitialPass
parent
72e8b447
Changes
107
Hide whitespace changes
Inline
Side-by-side
Source/cmAbstractFilesCommand.cxx
View file @
99221554
...
...
@@ -41,7 +41,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include
"cmAbstractFilesCommand.h"
// cmAbstractFilesCommand
bool
cmAbstractFilesCommand
::
In
voke
(
std
::
vector
<
std
::
string
>&
args
)
bool
cmAbstractFilesCommand
::
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
)
{
if
(
args
.
size
()
<
1
)
{
...
...
Source/cmAbstractFilesCommand.h
View file @
99221554
...
...
@@ -56,7 +56,7 @@ public:
* This is called when the command is first encountered in
* the input file.
*/
virtual
bool
In
voke
(
std
::
vector
<
std
::
string
>&
args
);
virtual
bool
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
);
/**
* The name of the command as specified in CMakeList.txt.
...
...
Source/cmAddCustomTargetCommand.cxx
View file @
99221554
...
...
@@ -41,7 +41,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include
"cmAddCustomTargetCommand.h"
// cmAddCustomTargetCommand
bool
cmAddCustomTargetCommand
::
In
voke
(
std
::
vector
<
std
::
string
>&
args
)
bool
cmAddCustomTargetCommand
::
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
)
{
bool
all
=
false
;
...
...
Source/cmAddCustomTargetCommand.h
View file @
99221554
...
...
@@ -66,7 +66,7 @@ public:
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
virtual
bool
In
voke
(
std
::
vector
<
std
::
string
>&
args
);
virtual
bool
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
);
/**
* The name of the command as specified in CMakeList.txt.
...
...
Source/cmAddDefinitionsCommand.cxx
View file @
99221554
...
...
@@ -41,7 +41,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include
"cmAddDefinitionsCommand.h"
// cmAddDefinitionsCommand
bool
cmAddDefinitionsCommand
::
In
voke
(
std
::
vector
<
std
::
string
>&
args
)
bool
cmAddDefinitionsCommand
::
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
)
{
if
(
args
.
size
()
<
1
)
{
...
...
Source/cmAddDefinitionsCommand.h
View file @
99221554
...
...
@@ -65,7 +65,7 @@ public:
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
virtual
bool
In
voke
(
std
::
vector
<
std
::
string
>&
args
);
virtual
bool
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
);
/**
* This determines if the command gets propagated down
...
...
Source/cmAddExecutableCommand.cxx
View file @
99221554
...
...
@@ -42,7 +42,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include
"cmCacheManager.h"
// cmExecutableCommand
bool
cmAddExecutableCommand
::
In
voke
(
std
::
vector
<
std
::
string
>&
args
)
bool
cmAddExecutableCommand
::
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
)
{
if
(
args
.
size
()
<
2
)
{
...
...
Source/cmAddExecutableCommand.h
View file @
99221554
...
...
@@ -65,7 +65,7 @@ public:
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
virtual
bool
In
voke
(
std
::
vector
<
std
::
string
>&
args
);
virtual
bool
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
);
/**
* The name of the command as specified in CMakeList.txt.
...
...
Source/cmAddLibraryCommand.cxx
View file @
99221554
...
...
@@ -42,7 +42,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include
"cmCacheManager.h"
// cmLibraryCommand
bool
cmAddLibraryCommand
::
In
voke
(
std
::
vector
<
std
::
string
>&
args
)
bool
cmAddLibraryCommand
::
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
)
{
if
(
args
.
size
()
<
1
)
{
...
...
Source/cmAddLibraryCommand.h
View file @
99221554
...
...
@@ -65,7 +65,7 @@ public:
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
virtual
bool
In
voke
(
std
::
vector
<
std
::
string
>&
args
);
virtual
bool
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
);
/**
* The name of the command as specified in CMakeList.txt.
...
...
Source/cmAddTestCommand.cxx
View file @
99221554
...
...
@@ -42,7 +42,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include
"cmCacheManager.h"
// cmExecutableCommand
bool
cmAddTestCommand
::
In
voke
(
std
::
vector
<
std
::
string
>&
args
)
bool
cmAddTestCommand
::
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
)
{
// First argument is the name of the test
// Second argument is the name of the executable to run (a target or external
...
...
Source/cmAddTestCommand.h
View file @
99221554
...
...
@@ -64,7 +64,7 @@ public:
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
virtual
bool
In
voke
(
std
::
vector
<
std
::
string
>&
args
);
virtual
bool
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
);
/**
* The name of the command as specified in CMakeList.txt.
...
...
Source/cmAuxSourceDirectoryCommand.cxx
View file @
99221554
...
...
@@ -42,7 +42,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include
"cmDirectory.h"
// cmAuxSourceDirectoryCommand
bool
cmAuxSourceDirectoryCommand
::
In
voke
(
std
::
vector
<
std
::
string
>&
args
)
bool
cmAuxSourceDirectoryCommand
::
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
)
{
if
(
args
.
size
()
<
2
||
args
.
size
()
>
2
)
{
...
...
Source/cmAuxSourceDirectoryCommand.h
View file @
99221554
...
...
@@ -68,7 +68,7 @@ public:
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
virtual
bool
In
voke
(
std
::
vector
<
std
::
string
>&
args
);
virtual
bool
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
);
/**
* The name of the command as specified in CMakeList.txt.
...
...
Source/cmBuildCommand.cxx
View file @
99221554
...
...
@@ -41,7 +41,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include
"cmBuildCommand.h"
// cmBuildCommand
bool
cmBuildCommand
::
In
voke
(
std
::
vector
<
std
::
string
>&
args
)
bool
cmBuildCommand
::
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
)
{
if
(
args
.
size
()
<
2
)
{
...
...
Source/cmBuildCommand.h
View file @
99221554
...
...
@@ -64,7 +64,7 @@ public:
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
virtual
bool
In
voke
(
std
::
vector
<
std
::
string
>&
args
);
virtual
bool
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
);
/**
* This determines if the command gets propagated down
...
...
Source/cmBuildNameCommand.cxx
View file @
99221554
...
...
@@ -41,7 +41,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include
"cmBuildNameCommand.h"
// cmBuildNameCommand
bool
cmBuildNameCommand
::
In
voke
(
std
::
vector
<
std
::
string
>&
args
)
bool
cmBuildNameCommand
::
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
)
{
if
(
args
.
size
()
<
1
)
{
...
...
Source/cmBuildNameCommand.h
View file @
99221554
...
...
@@ -64,7 +64,7 @@ public:
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
virtual
bool
In
voke
(
std
::
vector
<
std
::
string
>&
args
);
virtual
bool
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
);
/**
* This determines if the command gets propagated down
...
...
Source/cmBuildSharedLibrariesCommand.cxx
View file @
99221554
...
...
@@ -41,7 +41,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include
"cmBuildSharedLibrariesCommand.h"
// cmBuildSharedLibrariesCommand
bool
cmBuildSharedLibrariesCommand
::
In
voke
(
std
::
vector
<
std
::
string
>&
args
)
bool
cmBuildSharedLibrariesCommand
::
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
)
{
// Now check and see if the value has been stored in the cache
// already, if so use that value and don't look for the program
...
...
Source/cmBuildSharedLibrariesCommand.h
View file @
99221554
...
...
@@ -25,7 +25,7 @@ public:
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
virtual
bool
In
voke
(
std
::
vector
<
std
::
string
>&
args
);
virtual
bool
In
itialPass
(
std
::
vector
<
std
::
string
>&
args
);
/**
* This determines if the command gets propagated down
...
...
Prev
1
2
3
4
5
6
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment