initial commit

working C++ Development Setup on Linux (VS Code + CMake + vcpkg + clang
)
This commit is contained in:
dl92
2026-01-07 22:43:33 +00:00
parent 62ab80b1d6
commit 67aa4d8692
8 changed files with 51 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
find_package(fmt CONFIG REQUIRED)
add_executable(tut1 main.cpp)
target_link_libraries(tut1 PRIVATE fmt::fmt)