mirror of
https://github.com/Yet-Another-DreamTeam/quicknote.git
synced 2026-03-13 16:14:39 +00:00
simple setup
This commit is contained in:
parent
217b8f5d71
commit
d54ff2d7c4
0
bin/.gitkeep
Normal file
0
bin/.gitkeep
Normal file
5
makefile
Normal file
5
makefile
Normal 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
7
src/main.cpp
Normal file
@ -0,0 +1,7 @@
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
std::cout << "quicknote!" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user