BUG: make sure ctest sees the output of the cmake run in build and test cases, it was not...
This commit is contained in:
parent
7a977df566
commit
bf3598bab4
@ -143,6 +143,13 @@ void CMakeMessageCallback(const char* m, const char*, bool&, void* s)
|
|||||||
*out += "\n";
|
*out += "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CMakeProgressCallback(const char*msg, float , void * s)
|
||||||
|
{
|
||||||
|
std::string* out = (std::string*)s;
|
||||||
|
*out += msg;
|
||||||
|
*out += "\n";
|
||||||
|
}
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
void CMakeStdoutCallback(const char* m, int len, void* s)
|
void CMakeStdoutCallback(const char* m, int len, void* s)
|
||||||
{
|
{
|
||||||
@ -210,6 +217,7 @@ int cmCTestBuildAndTestHandler::RunCMakeAndTest(std::string* outstring)
|
|||||||
|
|
||||||
// should we cmake?
|
// should we cmake?
|
||||||
cmake cm;
|
cmake cm;
|
||||||
|
cm.SetProgressCallback(CMakeProgressCallback, &cmakeOutString);
|
||||||
cm.SetGlobalGenerator(cm.CreateGlobalGenerator(
|
cm.SetGlobalGenerator(cm.CreateGlobalGenerator(
|
||||||
this->BuildGenerator.c_str()));
|
this->BuildGenerator.c_str()));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user