You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
via CMake's configure argument -DLBSTD_VERSION_NS=<custom_namespace>
The macro for name of namespace will be LB_STD_VERSION_NS (with underscore, inconsistent, yes).
Another tasks:
Passthrough the CMake arg to C++ #define;
Test in tests/CMakeLists.txt for checking the baked C++ namespace's name with baked into CMake;
The text was updated successfully, but these errors were encountered:
Via defining the LB_STD_VERSION_NS macro using the
target_compile_definitions().
Its name a bit inconsistent though, but looks better (in my opinion) in
C++, but doesn't look OK in a bunch of CMake configure parameters as it
conflicts with another flags (`LBSTD_VERSION_xxx` vs `LB_STD_VERSION_xxx`).
Via defining the LB_STD_VERSION_NS macro using the
target_compile_definitions().
Its name a bit inconsistent though, but looks better (in my opinion) in
C++, but doesn't look OK in a bunch of CMake configure parameters as it
conflicts with another flags (`LBSTD_VERSION_xxx` vs `LB_STD_VERSION_xxx`).
Via defining the LB_STD_VERSION_NS macro using the
target_compile_definitions().
Its name a bit inconsistent though, but looks better (in my opinion) in
C++, but doesn't look OK in a bunch of CMake configure parameters as it
conflicts with another flags (`LBSTD_VERSION_xxx` vs `LB_STD_VERSION_xxx`).
via CMake's configure argument
-DLBSTD_VERSION_NS=<custom_namespace>
The macro for name of namespace will be
LB_STD_VERSION_NS
(with underscore, inconsistent, yes).Another tasks:
tests/CMakeLists.txt
for checking the baked C++ namespace's name with baked into CMake;The text was updated successfully, but these errors were encountered: