1

Update environment

This commit is contained in:
2024-05-31 15:17:16 +02:00
parent e2a6de89bc
commit 845bb5f46e
5 changed files with 13 additions and 9 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
.direnv
cmake-build-debug
cmake-build-release
.cache/clangd/index

View File

@ -2,6 +2,7 @@ cmake_minimum_required(VERSION 3.25)
project(BrainfuckInterpreter)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# find_package(Boost 1.81 COMPONENTS program_options REQUIRED)

1
compile_commands.json Symbolic link
View File

@ -0,0 +1 @@
./cmake-build-debug/compile_commands.json

18
flake.lock generated
View File

@ -6,11 +6,11 @@
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1705332421,
"narHash": "sha256-USpGLPme1IuqG78JNqSaRabilwkCyHmVWY0M9vYyqEA=",
"lastModified": 1713532798,
"narHash": "sha256-wtBhsdMJA3Wa32Wtm1eeo84GejtI43pMrFrmwLXrsEc=",
"owner": "numtide",
"repo": "devshell",
"rev": "83cb93d6d063ad290beee669f4badf9914cc16ec",
"rev": "12e914740a25ea1891ec619bb53cf5e6ca922e40",
"type": "github"
},
"original": {
@ -42,11 +42,11 @@
"systems": "systems_2"
},
"locked": {
"lastModified": 1705309234,
"narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=",
"lastModified": 1710146030,
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26",
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
"type": "github"
},
"original": {
@ -73,11 +73,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1705566941,
"narHash": "sha256-CLNtVRDA8eUPk+bxsCCZtRO0Cp+SpHdn1nNOLoFypLs=",
"lastModified": 1717112898,
"narHash": "sha256-7R2ZvOnvd9h8fDd65p0JnB7wXfUvreox3xFdYWd1BnY=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b06ff4bf8f4ad900fe0c2a61fc2946edc3a84be7",
"rev": "6132b0f6e344ce2fe34fc051b72fb46e34f668e0",
"type": "github"
},
"original": {

View File

@ -72,6 +72,7 @@
# bear # To generate compilation database
gdb
cling # To try out my bullshit implementations
clang-tools_18
# doxygen # Generate docs + graphs
];