mirror of
https://github.com/gflags/gflags.git
synced 2025-04-04 13:05:03 +00:00
14 lines
326 B
C++
Executable file
14 lines
326 B
C++
Executable file
// The macro can already be defined when using Unity builds.
|
|
#undef GFLAGS_DLL_DECLARE_FLAG
|
|
#define GFLAGS_DLL_DECLARE_FLAG
|
|
|
|
#include <iostream>
|
|
#include <gflags/gflags_declare.h>
|
|
|
|
DECLARE_string(message); // in gflags_delcare_test.cc
|
|
|
|
void print_message();
|
|
void print_message()
|
|
{
|
|
std::cout << FLAGS_message << std::endl;
|
|
}
|