renamed project

This commit is contained in:
Scott E. Graves 2024-06-07 09:34:44 -05:00
parent 8925704555
commit fbf5455f89
211 changed files with 13 additions and 13 deletions

View File

@ -7,7 +7,7 @@ else
let g:nmakeprg="./scripts/make_unix.sh"
" let g:gtest#gtest_command = "cd build && ./unittests"
endif
set path+=.,repertory2/**
set path+=.,repertory/**
lua << EOF
if vim.env.NV_DARCULA_ENABLE_DAP then
@ -25,7 +25,7 @@ if vim.env.NV_DARCULA_ENABLE_DAP then
type = type,
request = "launch",
program = function()
return gpath.create_path(cwd, "repertory2")
return gpath.create_path(cwd, "repertory")
end,
cwd = cwd,
stopAtEntry = true,
@ -36,7 +36,7 @@ if vim.env.NV_DARCULA_ENABLE_DAP then
type = type,
request = "launch",
program = function()
return gpath.create_path(cwd, "repertory2_tests")
return gpath.create_path(cwd, "repertory_tests")
end,
cwd = cwd,
stopAtEntry = true,

View File

@ -1,6 +1,6 @@
#!/bin/bash
PROJECT_APP_NAME="repertory2"
PROJECT_APP_NAME="repertory"
PROJECT_ENABLE_BOOST=ON
PROJECT_ENABLE_CPP_HTTPLIB=ON

View File

@ -17,8 +17,8 @@ set(REPERTORY_VER_FILEDESCRIPTION_STR "Mount utility for Sia and S3")
# configure_file(${CMAKE_CURRENT_SOURCE_DIR}/version.rc.in ${CMAKE_CURRENT_SOURCE_DIR}/src/version.rc @ONLY)
# set(WINDOWS_VERSION_RC ${CMAKE_CURRENT_SOURCE_DIR}/src/version.rc)
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/repertory2/librepertory2/src/common.cpp.in
${CMAKE_CURRENT_SOURCE_DIR}/repertory2/librepertory2/src/common.cpp
${CMAKE_CURRENT_SOURCE_DIR}/repertory/librepertory/src/common.cpp.in
${CMAKE_CURRENT_SOURCE_DIR}/repertory/librepertory/src/common.cpp
@ONLY
)

View File

@ -1 +1 @@
set(PROJECT_NAME repertory2)
set(PROJECT_NAME repertory)

View File

@ -157,7 +157,7 @@ using json = nlohmann::json;
#define REPERTORY "repertory"
#define REPERTORY_CONFIG_VERSION 0ull
#define REPERTORY_DATA_NAME "repertory2"
#define REPERTORY_DATA_NAME "repertory"
#define REPERTORY_MIN_REMOTE_VERSION "2.0.0"
#define REPERTORY_W L"repertory"

View File

@ -19,8 +19,8 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#ifndef LIBREPERTORY2_INCLUDE_INITIALIZE_HPP_
#define LIBREPERTORY2_INCLUDE_INITIALIZE_HPP_
#ifndef LIBREPERTORY_INCLUDE_INITIALIZE_HPP_
#define LIBREPERTORY_INCLUDE_INITIALIZE_HPP_
namespace repertory {
void project_cleanup();
@ -28,4 +28,4 @@ void project_cleanup();
[[nodiscard]] auto project_initialize() -> bool;
} // namespace repertory
#endif // LIBREPERTORY2_INCLUDE_INITIALIZE_HPP_
#endif // LIBREPERTORY_INCLUDE_INITIALIZE_HPP_

Some files were not shown because too many files have changed in this diff Show More