Hello!
I'm starting to study again this wonderful programming language while being a Java Backend Developer.
I was creating a simple c++ project and had the idea to introduce some solid logging library in order for me to have log files (like log4j in Java).
I would create this from scratch but I want to know how to compile external libraries'source code.
The library i'm focused on is "log4cxx", which depends on Apache Portable Runtime.
Before starting:
1. I'm compiling on Windows 10 with Visual studio.
2. I don't know anything about CMake, by now.
3. I do not want pre compiled libraries because I want to learn how to compile them.
By following this guide:
https://apr.apache.org/compiling_win32.html
I am getting C2513 errors by visual studio.
I know this is not a question strictly related to C++ programming, but using external libraries is a common practice regardless the programming language being used.
If nothing helps, i would appreciate the simple steps to do in order to compile a generic library, which in turn may depend on other libraries too.
I really hope this is not a "silly" post, thanks for your help!