change how debug build is determined

This commit is contained in:
wwieclaw 2023-06-26 11:11:47 +02:00
parent 833b3b5fce
commit 52aaad22bb
3 changed files with 17 additions and 3 deletions

View file

@ -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}>")

View file

@ -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']
)

View file

@ -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
}