-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CMakeLists.txt and refactor .gitignore
Increase CMake minimum required version to 3.15 due to incompatibilities with scikit-build-core. Update README.md. Add POLICY checks to avoid errors on policy-unsupported versions. Change CMP0167 policy of Boost searching to OLD due to non-compliance with "Modern CMake" development patterns. Add "TODO" to fix this later. Add useful logs to understand what Boost libraries were found by CMake. Apply sort to .gitignore to improve readability. Add .DS_Store, which is generated in macOS directories. Add .cache, which is generated by clangd.
- Loading branch information
Showing
3 changed files
with
32 additions
and
17 deletions.
There are no files selected for viewing
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,14 +1,16 @@ | ||
cmake-build-debug/ | ||
build/ | ||
Build/ | ||
BUILD/ | ||
bUILD/ | ||
Datasets/ | ||
.sconsign.dblite | ||
lib/ | ||
**/.DS_Store | ||
**/myeasylog.log | ||
.cache/ | ||
.csv | ||
.idea/ | ||
.sconsign.dblite | ||
.vscode/ | ||
**/myeasylog.log | ||
dist | ||
venv | ||
BUILD/ | ||
Build/ | ||
Datasets/ | ||
bUILD/ | ||
build/ | ||
cmake-build-debug/ | ||
dist/ | ||
lib/ | ||
venv/ |
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
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