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
9d6ea59a
Commit
9d6ea59a
authored
Sep 06, 2004
by
Ken Martin
Browse files
another platform fix
parent
21b91da5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/CTest/cmCTestScriptHandler.cxx
View file @
9d6ea59a
...
...
@@ -184,11 +184,11 @@ int cmCTestScriptHandler::ExtractVariables()
this
->
m_CTestCmd
.
empty
())
{
std
::
string
message
=
"CTEST_SOURCE_DIRECTORY = "
;
message
+=
(
!
m_SourceDir
.
empty
())
?
m_SourceDir
:
"(Null)"
;
message
+=
(
!
m_SourceDir
.
empty
())
?
m_SourceDir
.
c_str
()
:
"(Null)"
;
message
+=
"
\n
CTEST_BINARY_DIRECTORY = "
;
message
+=
(
!
m_BinaryDir
.
empty
())
?
m_BinaryDir
:
"(Null)"
;
message
+=
(
!
m_BinaryDir
.
empty
())
?
m_BinaryDir
.
c_str
()
:
"(Null)"
;
message
+=
"
\n
CTEST_CMAKE_COMMAND = "
;
message
+=
(
!
m_CTestCmd
.
empty
())
?
m_CTestCmd
:
"(Null)"
;
message
+=
(
!
m_CTestCmd
.
empty
())
?
m_CTestCmd
.
c_str
()
:
"(Null)"
;
cmSystemTools
::
Error
(
"Some required settings in the configuration file were missing:
\n
"
,
message
.
c_str
());
...
...
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