rename to noidb

This commit is contained in:
Gregory Burd 2024-04-24 22:18:00 -04:00
parent cbf6b8d7d1
commit 943be6afa1
4 changed files with 7 additions and 7 deletions

View file

@ -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.") message(FATAL_ERROR "Do not build in-source. Please remove CMakeCache.txt and the CMakeFiles/ directory. Then build out-of-source.")
endif() endif()
project(hanoidb project(noidb
VERSION 0.1.0 VERSION 0.1.0
LANGUAGES C CXX) LANGUAGES C CXX)
@ -82,7 +82,7 @@ if(ENABLE_INSTALL)
NO_CHECK_REQUIRED_COMPONENTS_MACRO) NO_CHECK_REQUIRED_COMPONENTS_MACRO)
install( install(
TARGETS hanoidb TARGETS noidb
EXPORT ${PROJECT_NAME}_Targets EXPORT ${PROJECT_NAME}_Targets
INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})

View file

@ -1,5 +1,5 @@
{ {
description = "HanoiDB"; description = "NoiDB";
inputs = { inputs = {
# nixpkgs.url = "github:NixOS/nixpkgs/unstable"; # nixpkgs.url = "github:NixOS/nixpkgs/unstable";
@ -20,7 +20,7 @@
in { in {
devShell = pkgs.mkShell rec { devShell = pkgs.mkShell rec {
name = "hanoidb"; name = "noidb";
packages = with pkgs; [ packages = with pkgs; [
ccache ccache

View file

@ -1,3 +1,3 @@
add_executable(hanoidb) add_executable(noidb)
target_sources(hanoidb PRIVATE hanoidb.cc) target_sources(noidb PRIVATE noidb.cc)
target_link_libraries(hanoidb PRIVATE Seastar::seastar) target_link_libraries(noidb PRIVATE Seastar::seastar)