-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added the clangd file for indicate that the compile_commands.js…
…on is not on the project's root
- Loading branch information
1 parent
80cb8a4
commit 9151924
Showing
67 changed files
with
35 additions
and
36 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
CompileFlags: | ||
CompilationDatabase: build |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
/** | ||
* @brief Header file for define the project's configuration variables procedurally, so they | ||
* can be included and used later in the source code. | ||
* | ||
* The data that initializes the constant evaluated expresions are just placeholders that | ||
* will be parsed and filled by CMake at build time. This configuration file later will be | ||
* copied to a concrete location in the build folder, and converted into a real CPP header | ||
* @file config.hpp.in | ||
* @author Alex Vergara ([email protected]) | ||
* @version 0.1.0 | ||
* @date 2024-01-03 | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <string_view> | ||
|
||
static constexpr std::string_view project_name {"rumble_lol_plugin"}; | ||
static constexpr std::string_view project_version {"0.1.0"}; | ||
|
||
static constexpr std::string_view project_version_major {"0"}; | ||
static constexpr std::string_view project_version_minor {"1"}; | ||
static constexpr std::string_view project_version_patch {"0"}; | ||
/** | ||
* @brief Header file for define the project's configuration variables procedurally, so they | ||
* can be included and used later in the source code. | ||
* | ||
* The data that initializes the constant evaluated expresions are just placeholders that | ||
* will be parsed and filled by CMake at build time. This configuration file later will be | ||
* copied to a concrete location in the build folder, and converted into a real CPP header | ||
* @file config.hpp.in | ||
* @author Alex Vergara ([email protected]) | ||
* @version 0.1.0 | ||
* @date 2024-01-03 | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <string_view> | ||
|
||
static constexpr std::string_view project_name {"rumble_lol_plugin"}; | ||
static constexpr std::string_view project_version {"0.1.0"}; | ||
|
||
static constexpr std::string_view project_version_major {"0"}; | ||
static constexpr std::string_view project_version_minor {"1"}; | ||
static constexpr std::string_view project_version_patch {"0"}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
#pragma once | ||
|
||
#include <string> | ||
#include <vector> | ||
#include <sstream> | ||
#include <codecvt> | ||
#include <locale> | ||
|
||
namespace StringHelper { | ||
std::string to_string(std::wstring wstr); | ||
std::wstring to_wstring(std::string str); | ||
std::vector<std::string>& split_by_delimiter(const std::string& input, char delimiter, std::vector<std::string>& output); | ||
} | ||
#pragma once | ||
|
||
#include <string> | ||
#include <vector> | ||
|
||
namespace StringHelper { | ||
std::to_string(std::wstring wstr); | ||
std::wstring to_wstring(std::string str); | ||
std::vector<std::string>& split_by_delimiter(const std::string& input, char delimiter, std::vector<std::string>& output); | ||
} |