Basic setup

This commit is contained in:
Benedikt Galbavy 2023-10-06 13:50:53 +02:00
parent d83e1f8df1
commit a91ec1ee75
4 changed files with 21 additions and 0 deletions

3
.gitignore vendored
View File

@ -1,3 +1,6 @@
twmailer-server
twmailer-client
# Prerequisites # Prerequisites
*.d *.d

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
all: client server
client: client.cpp
g++ -std=c++17 -Wall -Werror -fsanitize=address -o twmailer-client client.cpp
server: server.cpp
g++ -std=c++17 -Wall -Werror -fsanitize=address -o twmailer-server server.cpp
clean:
rm -f twmailer-client twmailer-server

4
client.cpp Normal file
View File

@ -0,0 +1,4 @@
int main (int argc, char* argv[])
{
//
}

4
server.cpp Normal file
View File

@ -0,0 +1,4 @@
int main (int argc, char* argv[])
{
//
}