mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
change how debug build is determined
This commit is contained in:
parent
833b3b5fce
commit
52aaad22bb
3 changed files with 17 additions and 3 deletions
|
@ -470,6 +470,10 @@ foreach (TYPE IN ITEMS STATIC SHARED)
|
|||
VERSION "${PACKAGE_VERSION}"
|
||||
SOVERSION "${PACKAGE_SOVERSION}"
|
||||
)
|
||||
target_compile_definitions(${target_name}
|
||||
PRIVATE
|
||||
$<$<CONFIG:Debug>:GFLAGS_DEBUG_BUILD>
|
||||
)
|
||||
set (include_dirs "$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/include>")
|
||||
if (INSTALL_HEADERS)
|
||||
list (APPEND include_dirs "$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}>")
|
||||
|
|
|
@ -92,12 +92,22 @@ def gflags_library(hdrs=[], srcs=[], threads=1):
|
|||
else:
|
||||
name += "_nothreads"
|
||||
copts += ["-DNO_THREADS"]
|
||||
config_setting(
|
||||
name = "gflags_debug_build",
|
||||
values = {
|
||||
"compilation_mode": "dbg",
|
||||
},
|
||||
)
|
||||
native.cc_library(
|
||||
name = name,
|
||||
hdrs = hdrs,
|
||||
srcs = srcs,
|
||||
copts = copts,
|
||||
linkopts = linkopts,
|
||||
defines = select({
|
||||
":gflags_debug_build": ["GFLAGS_DEBUG_BUILD"],
|
||||
"//conditions:default": []
|
||||
}),
|
||||
visibility = ["//visibility:public"],
|
||||
include_prefix = 'gflags'
|
||||
includes = ['src']
|
||||
)
|
||||
|
|
|
@ -353,8 +353,8 @@ static void ShowVersion() {
|
|||
} else {
|
||||
fprintf(stdout, "%s\n", ProgramInvocationShortName());
|
||||
}
|
||||
# if !defined(NDEBUG)
|
||||
fprintf(stdout, "Debug build (NDEBUG not #defined)\n");
|
||||
# ifdef GFLAGS_DEBUG_BUILD
|
||||
fprintf(stdout, "Debug build\n");
|
||||
# endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue