diff --git a/.gitignore b/.gitignore index b159eae..ae78584 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ build/ -compile_commands.json \ No newline at end of file +compile_commands.json +.cache/ \ No newline at end of file diff --git a/src/my_static_lib.cpp b/src/my_static_lib.cpp index 271923b..dd9eaa2 100644 --- a/src/my_static_lib.cpp +++ b/src/my_static_lib.cpp @@ -1,4 +1,8 @@ int method_in_static_lib() { return 42; +} + +int method_in_static_lib2() { + return 43; } \ No newline at end of file