Initial commit

This commit is contained in:
2023-10-24 15:01:06 -05:00
commit e1d5cd9010
8 changed files with 135 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;
}