diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-03-20 17:34:07 +0100 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-03-20 17:34:07 +0100 |
| commit | eb5b1f073c24a7172714cd6731475ef4beeed7a3 (patch) | |
| tree | 540c371197b1488b3ebf40f17631eef9103ac9f7 | |
| parent | 5fee3dbc7341d2b6c4e72c0f56a121e1bd5553d9 (diff) | |
| download | BT-Programming-Assignment-eb5b1f073c24a7172714cd6731475ef4beeed7a3.tar.gz BT-Programming-Assignment-eb5b1f073c24a7172714cd6731475ef4beeed7a3.zip | |
edit gitignore and Makefile
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Makefile | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index ee2da23..dd00bc4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ /server /client +/compile_commands.json +/.cache !/src/server/ !/src/client/ diff --git a/Makefile b/Makefile index 16376f5..9c83ae3 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CXX = g++ -CXXFLAGS := -std=c++23 -Wall -Wextra -Wpedantic -O3 +CXXFLAGS := -std=c++23 -Wall -Wextra -Wpedantic -O3 -Isrc/common server: src/server/main.cpp ${CXX} ${CXXFLAGS} $^ -o $@ |