From 943be6afa1410bd01b6fde7e87f74238d61dd940 Mon Sep 17 00:00:00 2001 From: Greg Burd Date: Wed, 24 Apr 2024 22:18:00 -0400 Subject: [PATCH] rename to noidb --- CMakeLists.txt | 4 ++-- flake.nix | 4 ++-- src/CMakeLists.txt | 6 +++--- src/{hanoidb.cc => noidb.cc} | 0 4 files changed, 7 insertions(+), 7 deletions(-) rename src/{hanoidb.cc => noidb.cc} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 38b1470..3cf3f98 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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}) diff --git a/flake.nix b/flake.nix index 4e3f5cf..f066bd3 100644 --- a/flake.nix +++ b/flake.nix @@ -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 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8217e8b..87e8437 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -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) diff --git a/src/hanoidb.cc b/src/noidb.cc similarity index 100% rename from src/hanoidb.cc rename to src/noidb.cc