Skip to content

Commit 3fe44e3

Browse files
committed
Fixes to git and CMake to remove Net before it's ready.
1 parent e2cae67 commit 3fe44e3

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ execute_process(
3535
OUTPUT_STRIP_TRAILING_WHITESPACE
3636
)
3737
execute_process(
38-
COMMAND ${GIT_EXECUTABLE} describe --tags --abrev=32
38+
COMMAND ${GIT_EXECUTABLE} describe --tags --abbrev=32
3939
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
4040
OUTPUT_VARIABLE GIT_TAG
4141
OUTPUT_STRIP_TRAILING_WHITESPACE

include/git.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ constexpr static FullHash const full_hash = GIT_FULL_HASH;
3333
#define GIT_TAG "unknown"
3434
#endif
3535

36-
using Tag = char[32U];
36+
using Tag = char[64U];
3737

3838
/// The Git Tag is a human-readable identifier for a specific version of the codebase, which can be useful for logging or displaying the version
3939
/// information in the application. We can create a constexpr string that holds this information at compile time.

modules/jarnax/CMakeLists.txt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -112,17 +112,17 @@ add_module(NAME jarnax-lsm9ds1-driver
112112
NO_BOARDS
113113
)
114114

115-
add_module(NAME jarnax-net
116-
SOURCES
117-
${CMAKE_CURRENT_SOURCE_DIR}/source/net/ip/v4/Interface.cpp
118-
${CMAKE_CURRENT_SOURCE_DIR}/source/net/ip/v4/Route.cpp
119-
INCLUDES
120-
${CMAKE_CURRENT_SOURCE_DIR}/include
121-
${CMAKE_CURRENT_SOURCE_DIR}/source/include # Internal includes
122-
LIBRARIES
123-
strict jarnax-interfaces
124-
GENERIC_MODULES
125-
memory core
126-
NO_CONFIGURATIONS
127-
NO_BOARDS
128-
)
115+
# add_module(NAME jarnax-net
116+
# SOURCES
117+
# ${CMAKE_CURRENT_SOURCE_DIR}/source/net/ip/v4/Interface.cpp
118+
# ${CMAKE_CURRENT_SOURCE_DIR}/source/net/ip/v4/Route.cpp
119+
# INCLUDES
120+
# ${CMAKE_CURRENT_SOURCE_DIR}/include
121+
# ${CMAKE_CURRENT_SOURCE_DIR}/source/include # Internal includes
122+
# LIBRARIES
123+
# strict jarnax-interfaces
124+
# GENERIC_MODULES
125+
# memory core
126+
# NO_CONFIGURATIONS
127+
# NO_BOARDS
128+
# )

0 commit comments

Comments
 (0)