simple setup

This commit is contained in:
lucaspalomodevelop 2023-10-03 12:39:33 +02:00
parent 217b8f5d71
commit d54ff2d7c4
3 changed files with 12 additions and 0 deletions

0
bin/.gitkeep Normal file
View File

5
makefile Normal file
View File

@ -0,0 +1,5 @@
CC = g++
CFLAGS = -Wall -O2
all:
$(CC) $(CFLAGS) -o ./bin/quicknote ./src/main.cpp

7
src/main.cpp Normal file
View File

@ -0,0 +1,7 @@
#include <iostream>
int main(int argc, char *argv[])
{
std::cout << "quicknote!" << std::endl;
return 0;
}