initial commit
working C++ Development Setup on Linux (VS Code + CMake + vcpkg + clang )
This commit is contained in:
1
cplusplus/learning/tut2/CMakeLists.txt
Normal file
1
cplusplus/learning/tut2/CMakeLists.txt
Normal file
@@ -0,0 +1 @@
|
||||
add_executable(tut2 main.cpp)
|
||||
6
cplusplus/learning/tut2/main.cpp
Normal file
6
cplusplus/learning/tut2/main.cpp
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
std::cout << "Hello from tut2\n";
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user