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
8d594bdc
Commit
8d594bdc
authored
Mar 25, 2002
by
Ken Martin
Browse files
removed quotes from cmake and ccommand executable to be consistant
parent
c617091d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmake.cxx
View file @
8d594bdc
...
...
@@ -248,9 +248,7 @@ void cmake::AddCMakePaths(const std::vector<std::string>& args)
}
// Save the value in the cache
cmCacheManager
::
GetInstance
()
->
AddCacheEntry
(
"CMAKE_COMMAND"
,
cmSystemTools
::
EscapeSpaces
(
cMakeSelf
.
c_str
()).
c_str
(),
"Path to CMake executable."
,
(
"CMAKE_COMMAND"
,
cMakeSelf
.
c_str
(),
"Path to CMake executable."
,
cmCacheManager
::
INTERNAL
);
// Find ccommand
...
...
@@ -265,10 +263,8 @@ void cmake::AddCMakePaths(const std::vector<std::string>& args)
// Save the value in the cache
cmCacheManager
::
GetInstance
()
->
AddCacheEntry
(
"CCOMMAND_COMMAND"
,
cmSystemTools
::
EscapeSpaces
(
cCommand
.
c_str
()).
c_str
(),
"Path to CMakeCommand executable."
,
cmCacheManager
::
INTERNAL
);
(
"CCOMMAND_COMMAND"
,
cCommand
.
c_str
(),
"Path to CMakeCommand executable."
,
cmCacheManager
::
INTERNAL
);
// do CMAKE_ROOT, look for the environment variable first
std
::
string
cMakeRoot
;
...
...
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