rename to noidb
This commit is contained in:
parent
cbf6b8d7d1
commit
943be6afa1
4 changed files with 7 additions and 7 deletions
|
@ -4,7 +4,7 @@ if(CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR)
|
|||
message(FATAL_ERROR "Do not build in-source. Please remove CMakeCache.txt and the CMakeFiles/ directory. Then build out-of-source.")
|
||||
endif()
|
||||
|
||||
project(hanoidb
|
||||
project(noidb
|
||||
VERSION 0.1.0
|
||||
LANGUAGES C CXX)
|
||||
|
||||
|
@ -82,7 +82,7 @@ if(ENABLE_INSTALL)
|
|||
NO_CHECK_REQUIRED_COMPONENTS_MACRO)
|
||||
|
||||
install(
|
||||
TARGETS hanoidb
|
||||
TARGETS noidb
|
||||
EXPORT ${PROJECT_NAME}_Targets
|
||||
INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
description = "HanoiDB";
|
||||
description = "NoiDB";
|
||||
|
||||
inputs = {
|
||||
# nixpkgs.url = "github:NixOS/nixpkgs/unstable";
|
||||
|
@ -20,7 +20,7 @@
|
|||
in {
|
||||
devShell = pkgs.mkShell rec {
|
||||
|
||||
name = "hanoidb";
|
||||
name = "noidb";
|
||||
|
||||
packages = with pkgs; [
|
||||
ccache
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
add_executable(hanoidb)
|
||||
target_sources(hanoidb PRIVATE hanoidb.cc)
|
||||
target_link_libraries(hanoidb PRIVATE Seastar::seastar)
|
||||
add_executable(noidb)
|
||||
target_sources(noidb PRIVATE noidb.cc)
|
||||
target_link_libraries(noidb PRIVATE Seastar::seastar)
|
||||
|
|
Loading…
Reference in a new issue