Initial project setup

This commit is contained in:
Blue 2023-08-27 14:55:04 -03:00
parent 14d7f0d5e0
commit 17881c4066
Signed by: blue
GPG key ID: 9B203B252A63EE38
6 changed files with 63 additions and 5 deletions

8
src/CMakeLists.txt Normal file
View file

@ -0,0 +1,8 @@
set(SOURCES
main.cpp
)
set(HEADERS
)
target_sources(${PROJECT_NAME} PRIVATE ${SOURCES})

6
src/main.cpp Normal file
View file

@ -0,0 +1,6 @@
#include <iostream>
int main(int argc, char *argv[]) {
std::cout << "Ahh, shit! Here we go again!" << std::endl;
return 0;
}