Initial commit

This commit is contained in:
zhupengfei
2019-08-24 23:30:22 +08:00
commit 4f5a3effd8
38 changed files with 4939 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
target_sources(threeSD PRIVATE
frontend/main.cpp
)
+14
View File
@@ -0,0 +1,14 @@
// Dummy
#include <iostream>
#include "common/logging/log.h"
int main() {
LOG_ERROR(Frontend, "test");
_sleep(1000);
LOG_WARNING(Frontend, "test2");
system("pause");
return 0;
}