Suppose, I compiled SFML with CMake and MinGW.
Now I have .lib and .dll libraries.
I create main.cpp, add #include and want to compile with mingw32-make.
all: compile link
compile:
g++ -c main.cpp -I "C:\Users\G\Downloads\SFML-2.5.1\include"
link:
g++ main.o -o main -L "C:\Users\G\Downloads\SFML builds\lib" -l sfml-graphics -l sfml-window -l sfml-system
Do I understand correctly that .lib files are using like a wrapper on linking stage for future working with .dll files?