diff options
author | Andreas Schuh <andreas.schuh.84@gmail.com> | 2016-11-25 12:35:39 +0000 |
---|---|---|
committer | Andreas Schuh <andreas.schuh.84@gmail.com> | 2016-11-25 12:38:54 +0000 |
commit | ea6144e243c106544ec068fc08ef14fb1e1644c4 (patch) | |
tree | 6e6a33545fd2bb4b6b30213eb6ff38f4501f72ca | |
parent | 86d67a3f49bbb88fb15761079f8bc1ff146e490d (diff) | |
download | gflags-ea6144e243c106544ec068fc08ef14fb1e1644c4.tar.gz gflags-ea6144e243c106544ec068fc08ef14fb1e1644c4.tar.bz2 gflags-ea6144e243c106544ec068fc08ef14fb1e1644c4.zip |
enh: Rename private sources, include public headers with rel path
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/completions.cc (renamed from src/gflags_completions.cc) | 10 | ||||
-rw-r--r-- | src/gflags.cc | 2 | ||||
-rw-r--r-- | src/gflags.h.in | 2 | ||||
-rw-r--r-- | src/mutex.h | 2 | ||||
-rw-r--r-- | src/reporting.cc (renamed from src/gflags_reporting.cc) | 4 | ||||
-rw-r--r-- | src/util.h | 1 |
7 files changed, 12 insertions, 13 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3fd9d70..ca7c147 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -350,8 +350,8 @@ set (PRIVATE_HDRS set (GFLAGS_SRCS "gflags.cc" - "gflags_reporting.cc" - "gflags_completions.cc" + "reporting.cc" + "completions.cc" ) if (OS_WINDOWS) diff --git a/src/gflags_completions.cc b/src/completions.cc index 8fefa1b..875088d 100644 --- a/src/gflags_completions.cc +++ b/src/completions.cc @@ -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; diff --git a/src/gflags.cc b/src/gflags.cc index 42dcd04..bc62227 100644 --- a/src/gflags.cc +++ b/src/gflags.cc @@ -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> diff --git a/src/gflags.h.in b/src/gflags.h.in index 3732636..43b3f7a 100644 --- a/src/gflags.h.in +++ b/src/gflags.h.in @@ -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 diff --git a/src/mutex.h b/src/mutex.h index ff96f2b..1648c2f 100644 --- a/src/mutex.h +++ b/src/mutex.h @@ -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 diff --git a/src/gflags_reporting.cc b/src/reporting.cc index fb17059..7cc6691 100644 --- a/src/gflags_reporting.cc +++ b/src/reporting.cc @@ -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 |