给vc添加编译时间计时

利用VC的宏实现编译时间统计,做法就是添加两个宏给VC的IDE,

Sub Application_BeforeBuildStart()

    dBuildStartTime = NOW

    Application.PrintToOutputWindow "---------------------------------------------------TimeCount Win32 Build ----------------------------------------------------------------"

    Application.PrintToOutputWindow "Build start: " & dBuildStartTime

End Sub

Sub Application_BuildFinish(nNumErrors, nNumWarnings)

    ' get build time

    dim dNow, hours, sec

    dNow = Now

    hours = DateDiff("h", dBuildStartTime, dNow, vbSunday, vbFirstJan1)

    min = DateDiff("n", dBuildStartTime, dNow, vbSunday, vbFirstJan1)

    sec = DateDiff("s", dBuildStartTime, dNow, vbSunday, vbFirstJan1)

    'hours = sec / 3600

    sec = sec - hours * 3600

    min = min - hours * 60

    'min = sec / 60

    sec = sec - min * 60

    ' format

    Dim strH, strM, strS

    If hours > 10 Then

        strH = hours

    Else

        strH = "0" & hours

    End If

    If min > 10 Then

        strM = min

    Else

        strM = "0" & min

    End If

    If sec > 10 Then

        strS = sec

    Else

        strS = "0" & sec

    End If

    ' display

    Application.PrintToOutputWindow "Build end: " & dNow

    Application.PrintToOutputWindow "Build time: " & strH & ":" & strM & ":" & strS

    Application.PrintToOutputWindow nNumWarnings & " warning(s), " & nNumErrors & " error(s)."

End Sub

保存之后再编译的时候就会在IDE的OutPut窗口多一个Macro 也签,那里显示的就是编译所耗费的时间。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
为了在VC6中编译protobuf,需要进行以下步骤: 1.下载protobuf源代码并解压缩。 2.打开VS6,创建一个新的Win32控制台应用程序。 3.将protobuf源代码中的src目录添加到项目中。 4.在项目属性中,选择C/C++选项卡,然后选择预处理器选项卡。在预处理器定义中添加HAVE_PTHREAD。 5.在项目属性中,选择C/C++选项卡,然后选择代码生成选项卡。在运行库中选择多线程调试(/MTd)。 6.在项目属性中,选择链接器选项卡,然后选择输入选项卡。在附加依赖项中添加libprotobuf.lib。 7.在项目属性中,选择链接器选项卡,然后选择系统选项卡。在子系统中选择控制台(/SUBSYSTEM:CONSOLE)。 8.编译并运行程序。 ```shell // 示例代码 #include <iostream> #include <fstream> #include <string> #include "google/protobuf/message.h" #include "google/protobuf/descriptor.h" #include "google/protobuf/compiler/importer.h" #include "google/protobuf/dynamic_message.h" #include "addressbook.pb.h" using namespace std; using namespace google::protobuf; using namespace google::protobuf::compiler; int main(int argc, char* argv[]) { GOOGLE_PROTOBUF_VERIFY_VERSION; DiskSourceTree sourceTree; sourceTree.MapPath("", "./"); Importer importer(&sourceTree, NULL); importer.Import("addressbook.proto"); const Descriptor* descriptor = importer.pool()->FindMessageTypeByName("tutorial.Person"); const Message* prototype = importer.pool()->FindMessageTypeByName("tutorial.Person")->prototype(); DynamicMessageFactory factory; Message* message = factory.GetPrototype(descriptor)->New(); message->ParseFromString("..."); // 从字符串中解析出Message cout << message->DebugString() << endl; // 输出Message的Debug信息 delete message; google::protobuf::ShutdownProtobufLibrary(); return 0; } ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值