Add Progress support
This commit is contained in:
parent
435282e538
commit
9f6e61361c
|
@ -21,6 +21,7 @@
|
|||
#include "cmListFileCache.h"
|
||||
|
||||
int do_cmake(int ac, char** av);
|
||||
void updateProgress(const char *msg, float prog, void *cd);
|
||||
|
||||
int main(int ac, char** av)
|
||||
{
|
||||
|
@ -68,5 +69,14 @@ int do_cmake(int ac, char** av)
|
|||
return 0;
|
||||
}
|
||||
cmake cm;
|
||||
cm.SetProgressCallback(updateProgress, 0);
|
||||
return cm.Run(args);
|
||||
}
|
||||
|
||||
void updateProgress(const char *msg, float prog, void*)
|
||||
{
|
||||
if ( prog < 0 )
|
||||
{
|
||||
cout << "-- " << msg << endl;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue