Loading .gitignore 0 → 100644 +1 −0 Original line number Diff line number Diff line build/ No newline at end of file CMakeLists.txt 0 → 100644 +5 −0 Original line number Diff line number Diff line cmake_minimum_required(VERSION 4.1) project(cmake_hello) add_executable(app main.cpp) main.cpp 0 → 100644 +5 −0 Original line number Diff line number Diff line #include <iostream> int main(){ std::cout << "Hello there\n"; } Loading
.gitignore 0 → 100644 +1 −0 Original line number Diff line number Diff line build/ No newline at end of file
CMakeLists.txt 0 → 100644 +5 −0 Original line number Diff line number Diff line cmake_minimum_required(VERSION 4.1) project(cmake_hello) add_executable(app main.cpp)
main.cpp 0 → 100644 +5 −0 Original line number Diff line number Diff line #include <iostream> int main(){ std::cout << "Hello there\n"; }