Initial commit

This commit is contained in:
2023-10-09 10:16:02 -05:00
commit 923a8b8c87
8 changed files with 130 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
add_executable(something
./main.cpp
)
target_include_directories(something PUBLIC ${CMAKE_CURRENT_LIST_DIR})
+6
View File
@@ -0,0 +1,6 @@
#include <iostream>
int main(void) {
std::cout << "Hello world" << std::endl;
return 0;
}