Skip to content

Commit

Permalink
add new logo
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexStocks committed Aug 27, 2024
1 parent d08c598 commit 033c40a
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 6 deletions.
56 changes: 56 additions & 0 deletions CMakeCache.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# This is the CMakeCache file.
# For build in directory: /Users/alex/test/golang/lib/src/github.com/arana-db/kiwi
# It was generated by CMake: /usr/local/Cellar/cmake/3.9.3_1/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.

########################
# EXTERNAL cache entries
########################

//No help, variable specified on the command line.
CMAKE_BUILD_TYPE:UNINITIALIZED=Release


########################
# INTERNAL cache entries
########################

//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/Users/alex/test/golang/lib/src/github.com/arana-db/kiwi
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=9
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.9.3_1/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.9.3_1/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.9.3_1/bin/ctest
//Path to cache edit program executable.
CMAKE_EDIT_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.9.3_1/bin/ccmake
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/Users/alex/test/golang/lib/src/github.com/arana-db/kiwi/cmake-build-release
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/usr/local/Cellar/cmake/3.9.3_1/share/cmake

1 change: 1 addition & 0 deletions CMakeFiles/cmake.check_cache
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
3 changes: 3 additions & 0 deletions etc/script/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ function build() {
PREFIX="${PREFIX}-debug"
fi

mkdir -p ${PREFIX}
cp CMakeLists.txt ${PREFIX}/

cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ${CMAKE_FLAGS} -S . -B ${PREFIX}
cmake --build ${PREFIX} -- ${MAKE_FLAGS} -j ${CPU_CORE}

Expand Down
13 changes: 7 additions & 6 deletions src/pikiwidb_logo.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
#pragma once

const char* pikiwidbLogo =
"\n______ _ _ _ _ ______ ______ \n"
"| ___ \\ (_)| | (_) (_)| _ \\| ___ \\ \n"
"| |_/ / _ | | __ _ __ __ _ | | | || |_/ / PikiwiDB(%s) %d bits \n" // version and
"| __/ | || |/ /| |\\ \\ /\\ / /| || | | || ___ \\ \n"
"| | | || < | | \\ V V / | || |/ / | |_/ / Port: %d\n"
"\\_| |_||_|\\_\\|_| \\_/\\_/ |_||___/ \\____/ https://github.com/OpenAtomFoundation/pikiwidb \n\n\n";
"\n _ _ __ _ \n"
" ( )( ) / )( ) _ _ \n"
" _ _ _ __ _ _ ___ _ _ ______ _| || |_ /' /' | |/') (_) _ _ _ (_) arana-db/kiwi %d bits \n" // version
" /'_` )( '__)/'_` )/' _ `\ /'_` )(______)/'_` || '_`\ /' /' | , < | |( ) ( ) ( )| | Port: %d \n"
" ( (_| || | ( (_| || ( ) |( (_| | ( (_| || |_) ) /' /' | |\`\ | || \_/ \_/ || | \n"
" `\__,_)(_) `\__,_)(_) (_)`\__,_) `\__,_)(_,__/'(_/' (_) (_)(_)`\___x___/'(_) \n"
" Github repo site: https://github.com/arana-db/kiwi \n\n\n";

0 comments on commit 033c40a

Please sign in to comment.