使用CMAKE,在VS2019下,编译了GLOG的源码,编译了32位和64位的静态库、动态库,然后编译生成的动态库和静态库,还有头文件,分别放在了各自的目录后,写了一个Demo。
// TestGLOG.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#ifndef GLOG_NO_ABBREVIATED_SEVERITIES
#define GLOG_NO_ABBREVIATED_SEVERITIES // 如果不加这个宏定义代码就会报错
#endif
#include "..\..\public_include\glog\logging.h"
#include <iostream>
#include <string>
#include <Windows.h>
#include<direct.h>
using namespace std;
int main()
{
google::InitGoogleLogging("TestGLOG");//使用glog之前必须先初始化库,仅需执行一次,括号内为程序名
FLAGS_alsologtostderr = true;//是否将日志输出到文件和stderr
FLAGS_colorlogtostderr = true;//是否启用不同颜色显示
char* path = NULL;// 获取文件的绝对路径+文件名
_get_pgmptr(&path);
std::string strPath = path;
int pos = strPath.find_last_of('\\', strPath.length());
strPath = strPath.substr(0, pos);
strPath.append("\\..\\logs");
string infoFile &#