mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
enh: Rename private sources, include public headers with rel path
This commit is contained in:
parent
3e7ef74a07
commit
b0b8ac9234
7 changed files with 12 additions and 13 deletions
|
@ -348,8 +348,8 @@ set (PRIVATE_HDRS
|
|||
|
||||
set (GFLAGS_SRCS
|
||||
"gflags.cc"
|
||||
"gflags_reporting.cc"
|
||||
"gflags_completions.cc"
|
||||
"reporting.cc"
|
||||
"completions.cc"
|
||||
)
|
||||
|
||||
if (OS_WINDOWS)
|
||||
|
|
|
@ -46,11 +46,6 @@
|
|||
// 5a) Force bash to place most-relevent groups at the top of the list
|
||||
// 5b) Trim most flag's descriptions to fit on a single terminal line
|
||||
|
||||
|
||||
#include "gflags_completions.h"
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h> // for strlen
|
||||
|
@ -60,9 +55,12 @@
|
|||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include "gflags.h"
|
||||
#include "config.h"
|
||||
#include "util.h"
|
||||
|
||||
#include "gflags/gflags.h"
|
||||
#include "gflags/gflags_completions.h"
|
||||
|
||||
using std::set;
|
||||
using std::string;
|
||||
using std::vector;
|
|
@ -88,7 +88,7 @@
|
|||
// are, similarly, mostly hooks into the functionality described above.
|
||||
|
||||
#include "config.h"
|
||||
#include "gflags.h"
|
||||
#include "gflags/gflags.h"
|
||||
|
||||
#include <assert.h>
|
||||
#include <ctype.h>
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "gflags_declare.h" // IWYU pragma: export
|
||||
#include "gflags/gflags_declare.h" // IWYU pragma: export
|
||||
|
||||
|
||||
// We always want to export variables defined in user code
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
#ifndef GFLAGS_MUTEX_H_
|
||||
#define GFLAGS_MUTEX_H_
|
||||
|
||||
#include "gflags_declare.h" // to figure out pthreads support
|
||||
#include "gflags/gflags_declare.h" // to figure out pthreads support
|
||||
|
||||
#if defined(NO_THREADS)
|
||||
typedef int MutexType; // to keep a lock-count
|
||||
|
|
|
@ -56,8 +56,8 @@
|
|||
#include <vector>
|
||||
|
||||
#include "config.h"
|
||||
#include "gflags.h"
|
||||
#include "gflags_completions.h"
|
||||
#include "gflags/gflags.h"
|
||||
#include "gflags/gflags_completions.h"
|
||||
#include "util.h"
|
||||
|
||||
|
|
@ -35,6 +35,7 @@
|
|||
#define GFLAGS_UTIL_H_
|
||||
|
||||
#include "config.h"
|
||||
#include "gflags/gflags_declare.h" // GFLAGS_NAMESPACE
|
||||
|
||||
#include <assert.h>
|
||||
#ifdef HAVE_INTTYPES_H
|
||||
|
|
Loading…
Add table
Reference in a new issue