[zhongxiu@bpdev hello]$ ./cmake.sh
Start cmake configure.....
编译 Debug 级别 [Debug(D)|Release(R)]: D
....
[zhongxiu@bpdev build]$ make -j 12
Scanning dependencies of target hello
[ 9%] [ 18%] [ 36%] [ 36%] [ 45%] [ 54%] [ 63%] [ 72%] Building CXX object bin/CMakeFiles/hello.dir/BootStrap.o
Building CXX object bin/CMakeFiles/hello.dir/hello.o
Building CXX object bin/CMakeFiles/hello.dir/App.o
Building CXX object bin/CMakeFiles/hello.dir/Http.o
Building CXX object bin/CMakeFiles/hello.dir/Http/Server.o
Building CXX object bin/CMakeFiles/hello.dir/Http/HttpInterface.o
Building CXX object bin/CMakeFiles/hello.dir/AdServer.o
[ 81%] [ 90%] Building CXX object bin/CMakeFiles/hello.dir/Http/Index.o
[100%] Building CXX object bin/CMakeFiles/hello.dir/McProcessor.o
Building CXX object bin/CMakeFiles/hello.dir/Timer.o
Building CXX object bin/CMakeFiles/hello.dir/HeadProcessor.o
[100%] Built target hello
[zhongxiu@bpdev build]$ ./bin/hello -c ../conf/system.ini
20160718 18:46:25.122239 140572416194912 TRACE initHttp Init http server, host:0.0.0.0 port:10010 - AdServer.cpp:87
20160718 18:46:25.122375 140572416194912 DEBUG Server Init Http Server. - Server.cpp:46
20160718 18:46:25.122412 140572416194912 DEBUG registerLocation Server Location: /server/status register success. - Server.cpp:234
20160718 18:46:25.122430 140572416194912 DEBUG registerLocation Server Location: /index/index register success. - Server.cpp:234
20160718 18:46:25.122483 140572416194912 DEBUG Acceptor Bind: 0.0.0.0:10011 - Acceptor.cpp:29
20160718 18:46:25.122669 140572405700352 DEBUG threadFunc Start create base event. - Server.cpp:116
20160718 18:46:25.122764 140572405700352 TRACE threadFunc Worker start. - Server.cpp:130
20160718 18:46:25.122783 140572405700352 DEBUG threadFunc Start create new evhttp. - Server.cpp:132
....
20160718 18:46:28.154159 140572416194912 INFO Hello world - Timer.cpp:58
20160718 18:46:29.154325 140572416194912 INFO Hello world - Timer.cpp:58
20160718 18:46:30.154650 140572416194912 INFO Hello world - Timer.cpp:58
20160718 18:46:31.155244 140572416194912 INFO Hello world - Timer.cpp:58
20160718 18:46:32.155849 140572416194912 INFO Hello world - Timer.cpp:58
20160718 18:46:33.156313 140572416194912 INFO Hello world - Timer.cpp:58
20160718 18:46:34.156995 140572416194912 INFO Hello world - Timer.cpp:58
20160718 18:46:35.157595 140572416194912 INFO Hello world - Timer.cpp:58
20160718 18:46:36.158060 140572416194912 INFO Hello world - Timer.cpp:58
通过查看日志完成了每个一秒打印一行 hello world 的功能